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
November 2019
- 20 participants
- 2923 discussions

06 Nov '19
commit 88796637e521c9879f8743a8b6647311a27a9691
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 13:05:36 2019 -0500
dispatch_cfg_st.h: make comments into doxygen.
---
src/lib/dispatch/dispatch_cfg_st.h | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/lib/dispatch/dispatch_cfg_st.h b/src/lib/dispatch/dispatch_cfg_st.h
index d06540c4a..f64fc2b32 100644
--- a/src/lib/dispatch/dispatch_cfg_st.h
+++ b/src/lib/dispatch/dispatch_cfg_st.h
@@ -14,8 +14,11 @@
struct smartlist_t;
-/* Information needed to create a dispatcher, but in a less efficient, more
- * mutable format. */
+/** Information needed to create a dispatcher, but in a less efficient, more
+ * mutable format.
+ *
+ * Nearly everybody should use the \refdir{lib/pubsub} module to configure
+ * dispatchers, instead of using this. */
struct dispatch_cfg_t {
/** A list of msg_type_id_t (cast to void*), indexed by msg_t. */
struct smartlist_t *type_by_msg;
1
0
commit c6c02658cf01ff6c73c21d2884366d1b818613f8
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 13:05:13 2019 -0500
hs_ident.c: make comments into doxygen.
---
src/feature/hs/hs_ident.c | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/src/feature/hs/hs_ident.c b/src/feature/hs/hs_ident.c
index a00e55ec2..dd1cd2362 100644
--- a/src/feature/hs/hs_ident.c
+++ b/src/feature/hs/hs_ident.c
@@ -10,7 +10,7 @@
#include "lib/crypt_ops/crypto_util.h"
#include "feature/hs/hs_ident.h"
-/* Return a newly allocated circuit identifier. The given public key is copied
+/** Return a newly allocated circuit identifier. The given public key is copied
* identity_pk into the identifier. */
hs_ident_circuit_t *
hs_ident_circuit_new(const ed25519_public_key_t *identity_pk)
@@ -20,7 +20,7 @@ hs_ident_circuit_new(const ed25519_public_key_t *identity_pk)
return ident;
}
-/* Free the given circuit identifier. */
+/** Free the given circuit identifier. */
void
hs_ident_circuit_free_(hs_ident_circuit_t *ident)
{
@@ -31,7 +31,7 @@ hs_ident_circuit_free_(hs_ident_circuit_t *ident)
tor_free(ident);
}
-/* For a given circuit identifier src, return a newly allocated copy of it.
+/** For a given circuit identifier src, return a newly allocated copy of it.
* This can't fail. */
hs_ident_circuit_t *
hs_ident_circuit_dup(const hs_ident_circuit_t *src)
@@ -41,7 +41,7 @@ hs_ident_circuit_dup(const hs_ident_circuit_t *src)
return ident;
}
-/* For a given directory connection identifier src, return a newly allocated
+/** For a given directory connection identifier src, return a newly allocated
* copy of it. This can't fail. */
hs_ident_dir_conn_t *
hs_ident_dir_conn_dup(const hs_ident_dir_conn_t *src)
@@ -51,7 +51,7 @@ hs_ident_dir_conn_dup(const hs_ident_dir_conn_t *src)
return ident;
}
-/* Free the given directory connection identifier. */
+/** Free the given directory connection identifier. */
void
hs_ident_dir_conn_free_(hs_ident_dir_conn_t *ident)
{
@@ -62,7 +62,7 @@ hs_ident_dir_conn_free_(hs_ident_dir_conn_t *ident)
tor_free(ident);
}
-/* Initialized the allocated ident object with identity_pk and blinded_pk.
+/** Initialized the allocated ident object with identity_pk and blinded_pk.
* None of them can be NULL since a valid directory connection identifier must
* have all fields set. */
void
@@ -78,7 +78,7 @@ hs_ident_dir_conn_init(const ed25519_public_key_t *identity_pk,
ed25519_pubkey_copy(&ident->blinded_pk, blinded_pk);
}
-/* Return a newly allocated edge connection identifier. The given public key
+/** Return a newly allocated edge connection identifier. The given public key
* identity_pk is copied into the identifier. */
hs_ident_edge_conn_t *
hs_ident_edge_conn_new(const ed25519_public_key_t *identity_pk)
@@ -88,7 +88,7 @@ hs_ident_edge_conn_new(const ed25519_public_key_t *identity_pk)
return ident;
}
-/* Free the given edge connection identifier. */
+/** Free the given edge connection identifier. */
void
hs_ident_edge_conn_free_(hs_ident_edge_conn_t *ident)
{
@@ -99,7 +99,7 @@ hs_ident_edge_conn_free_(hs_ident_edge_conn_t *ident)
tor_free(ident);
}
-/* Return true if the given ident is valid for an introduction circuit. */
+/** Return true if the given ident is valid for an introduction circuit. */
int
hs_ident_intro_circ_is_valid(const hs_ident_circuit_t *ident)
{
@@ -120,4 +120,3 @@ hs_ident_intro_circ_is_valid(const hs_ident_circuit_t *ident)
invalid:
return 0;
}
-
1
0

06 Nov '19
commit b994397f1af193f841703151af846ac497bbc0f7
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 13:08:04 2019 -0500
entrynodes.h: make a comment into doxygen.
---
src/feature/client/entrynodes.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/feature/client/entrynodes.h b/src/feature/client/entrynodes.h
index 4e5eb4e96..cb53d0c3f 100644
--- a/src/feature/client/entrynodes.h
+++ b/src/feature/client/entrynodes.h
@@ -28,7 +28,7 @@ typedef struct circuit_guard_state_t circuit_guard_state_t;
private. */
typedef struct entry_guard_restriction_t entry_guard_restriction_t;
-/* Information about a guard's pathbias status.
+/** Information about a guard's pathbias status.
* These fields are used in circpathbias.c to try to detect entry
* nodes that are failing circuits at a suspicious frequency.
*/
1
0
commit 9663ac00275c808b478474e9d6aa3a194612424f
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 13:07:13 2019 -0500
int_type_params_t: add documentation.
---
src/lib/confmgt/type_defs.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/lib/confmgt/type_defs.c b/src/lib/confmgt/type_defs.c
index ed930fb02..f39f1c3d8 100644
--- a/src/lib/confmgt/type_defs.c
+++ b/src/lib/confmgt/type_defs.c
@@ -90,9 +90,12 @@ static const var_type_fns_t string_fns = {
// These types are implemented as int, possibly with a restricted range.
/////
+/**
+ * Parameters for parsing an integer type.
+ **/
typedef struct int_type_params_t {
- int minval;
- int maxval;
+ int minval; /**< Lowest allowed value */
+ int maxval; /**< Highest allowed value */
} int_parse_params_t;
static const int_parse_params_t INT_PARSE_UNRESTRICTED = {
1
0
commit 575cb067f0bc67740e8cfe26451651cd2c325b29
Author: hiro <hiro(a)torproject.org>
Date: Wed Nov 6 19:01:27 2019 +0100
Add changes to donate-faq
---
templates/donor-faq.twig | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/templates/donor-faq.twig b/templates/donor-faq.twig
index bc5ebe33..df19def6 100644
--- a/templates/donor-faq.twig
+++ b/templates/donor-faq.twig
@@ -188,6 +188,16 @@
<p class="answer">{% trans %}Sure.{% endtrans %} {% trans %}Just mail us at <span class="email">giving(at)torproject.org</span></a>.{% endtrans %}</p>
</li>
<li>
+ <h2 class="question">{% trans %}Can I donate hardware?{% endtrans %}</h2>
+ <p class="answer">{% trans %}Typically no, we don't encourage people to donate hardware. But if you want to make a hardware donation that you think might be especially useful for us, please mail giving(at)torproject.org.{% endtrans %}<br />
+ {% trans %}The Tor project manages multiple machines in multiple locations, all aimed at helping the Tor project develop software design to protect people's anonymity. It does not, in itself, run the Tor network.{% endtrans %}<br />
+ {% trans %}Machines for helping the Tor project develop software are generally paid for by the Tor project or donated by friendly organisations. If you wish to donate hardware resources, it's generally expected the hardware will be fully under the control of the [Tor
+sysadmin team][]. Details of the requirements are documented in the <a href="https://help.torproject.org/tsa/doc/hardware-requirements/">team wiki</a>.{% endtrans %}<br/>
+ {% trans %}It's possible for the Tor project to run only *services* on top of an already existing operating system as well, but we prefer to run the entire stack ourselves.{% endtrans %}
+ {% trans %}<a href="https://help.torproject.org/tsa/">Tor Sysadmin Team</a>{% endtrans %}<br />
+ {% trans %}<a href="https://help.torproject.org/tsa/doc/hardware-requirements/">Hardware requirements</a>{% endtrans %}</p>
+ </li>
+ <li>
<h2 class="question">{% trans %}Will the Tor Project accept donations from anybody, or do you reserve the right to reject support from specific organizations or individuals?{% endtrans %}</h2>
<p class="answer">{% trans %}We do reserve the right to reject a donation.{% endtrans %} {% trans %}To date though, we haven't exercised that right.{% endtrans %} {% trans %}We are happy that a broad range of people use and support Tor.{% endtrans %}</p>
</li>
1
0
commit 2ab5b7520ec6d3a45923c9e5a61c3c6ddfb22c43
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 12:56:02 2019 -0500
Add missing **/ to core_or.dox
---
src/core/or/core_or.dox | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/core/or/core_or.dox b/src/core/or/core_or.dox
index 705e9b543..7272f7680 100644
--- a/src/core/or/core_or.dox
+++ b/src/core/or/core_or.dox
@@ -1,6 +1,6 @@
/**
-@dir /core/or
-@brief core/or: *Onion routing happens here*.
+@dir core/or
+@brief core/or: **Onion routing happens here!**
This is the central part of Tor that handles the core tasks of onion routing:
building circuit, handling circuits, attaching circuit to streams, moving
@@ -60,3 +60,5 @@ encrypt, route, and interpret relay cells.
`scheduler.c`
: Decides which channel/circuit pair is ready to receive the next cell.
+
+**/
1
0

06 Nov '19
commit 3ae87c3c7f1fb79744a343c0033afa24520a56d6
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Nov 6 12:50:57 2019 -0500
Turn the "dataflow" document into a doxygen page.
---
.../design/02-dataflow.md => src/core/or/dataflow.dox | 14 ++++++++------
src/mainpage.dox | 16 +++++++++++++++-
2 files changed, 23 insertions(+), 7 deletions(-)
diff --git a/doc/HACKING/design/02-dataflow.md b/src/core/or/dataflow.dox
similarity index 97%
rename from doc/HACKING/design/02-dataflow.md
rename to src/core/or/dataflow.dox
index 39f21a908..3b32bb30f 100644
--- a/doc/HACKING/design/02-dataflow.md
+++ b/src/core/or/dataflow.dox
@@ -1,5 +1,7 @@
+/**
+@tableofcontents
-## Data flow in the Tor process ##
+@page dataflow Data flow in the Tor process
We read bytes from the network, we write bytes to the network. For the
most part, the bytes we write correspond roughly to bytes we have read,
@@ -7,9 +9,7 @@ with bits of cryptography added in.
The rest is a matter of details.
-
-
-### Connections and buffers: reading, writing, and interpreting. ###
+### Connections and buffers: reading, writing, and interpreting.
At a low level, Tor's networking code is based on "connections". Each
connection represents an object that can send or receive network-like
@@ -79,7 +79,7 @@ wide variety of reasons, including:
* For some connection types, reading is disabled when the inbuf is
too full.
* Reading/writing is temporarily disabled on connections that have
- recently read/written enough data up to their bandwidth
+ recently read/written enough data up to their bandwidth
* Reading is disabled on connections when reading more data from them
would require that data to be buffered somewhere else that is
already full.
@@ -208,7 +208,7 @@ next channel in sequence with `append cell_to_circuit_queue()`. This
places the cell on a per-circuit queue for cells headed out on that
particular channel.
-### Sending cells on circuits: the complicated bit. ###
+### Sending cells on circuits: the complicated bit.
Relay cells are queued onto circuits from one of two (main) sources:
reading data from edge connections, and receiving a cell to be relayed
@@ -234,3 +234,5 @@ queue the next cell.
(This logic applies to outgoing relay cells only; incoming relay cells
are processed as they arrive.)
+
+**/
diff --git a/src/mainpage.dox b/src/mainpage.dox
index 02ce8675e..eb29eb5fa 100644
--- a/src/mainpage.dox
+++ b/src/mainpage.dox
@@ -1,7 +1,9 @@
/**
@mainpage Tor source reference
-@section intro Welcome to Tor
+@tableofcontents
+
+@section welcome Welcome to Tor
This documentation describes the general structure of the Tor codebase, how
it fits together, what functionality is available for extending Tor, and
@@ -24,6 +26,18 @@ development tools, see
[doc/HACKING](https://gitweb.torproject.org/tor.git/tree/doc/HACKING) in the
Tor repository.
+@section topics Topic-related documentation
+
+@subpage intro
+
+@subpage dataflow
+**/
+
+/**
+@page intro A high-level overview
+
+@tableofcontents
+
@section highlevel The very high level
Ultimately, Tor runs as an event-driven network daemon: it responds to
1
0

[translation/support-portal_completed] https://gitweb.torproject.org/translation.git/commit/?h=support-portal_completed
by translation@torproject.org 06 Nov '19
by translation@torproject.org 06 Nov '19
06 Nov '19
commit 1124490b04ecbdd8d6313fc20ee3e2f406da15f4
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Nov 6 15:56:01 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal_comp…
---
contents.pot | 388 ++++++++++++++++++++++++++---------------------------------
1 file changed, 169 insertions(+), 219 deletions(-)
diff --git a/contents.pot b/contents.pot
index 5c67e6b38..9b69dc913 100644
--- a/contents.pot
+++ b/contents.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: en <LL(a)li.org>\n"
@@ -307,15 +307,15 @@ msgstr "The add-on itself could even be maliciously designed to spy on you."
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -401,13 +401,11 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1109,11 +1107,11 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1356,19 +1354,19 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1381,10 +1379,10 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1556,13 +1554,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1767,14 +1763,12 @@ msgstr "They need to be configured separately to use Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1895,13 +1889,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1990,17 +1982,15 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2148,24 +2138,22 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2174,12 +2162,8 @@ msgstr "I'm having a problem with DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
-msgstr ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
+msgstr "Please see the [DuckDuckGo support portal](https://duck.co/help)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2188,11 +2172,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2201,12 +2185,8 @@ msgstr "I'm having a problem with NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
-msgstr ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
+msgstr "Please see the [NoScript FAQ](https://noscript.net/faq)."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2216,11 +2196,11 @@ msgstr "I'm having a problem with HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2313,12 +2293,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2363,12 +2339,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2478,13 +2450,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2711,13 +2681,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2732,15 +2700,13 @@ msgstr "In Tor Browser, every new domain gets its own circuit."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2784,13 +2750,11 @@ msgstr "Why does my Tor Browser say something about Firefox not working?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2806,15 +2770,15 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -3067,7 +3031,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -3077,7 +3041,7 @@ msgstr ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -3087,12 +3051,12 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -4270,12 +4234,10 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4431,10 +4393,10 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -6288,11 +6250,11 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -6326,20 +6288,20 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6363,8 +6325,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6377,12 +6339,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6562,13 +6520,13 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -6847,8 +6805,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7181,8 +7139,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "### daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7897,13 +7855,15 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -9011,17 +8971,15 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -9144,11 +9102,11 @@ msgstr "Thank you for your support!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -9206,17 +9164,15 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -9249,13 +9205,11 @@ msgstr "We do not recommend using Tor with BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -9329,12 +9283,10 @@ msgstr "Tor doesn't keep any logs that could identify a particular user."
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -9353,13 +9305,11 @@ msgstr "No, we don't provide any online services."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
1
0

[translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal
by translation@torproject.org 06 Nov '19
by translation@torproject.org 06 Nov '19
06 Nov '19
commit d7682fff69aec3c7e9016a00f8047ededdbd5de1
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Nov 6 15:55:52 2019 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
contents+ar.po | 205 ++++++++++++-----------------
contents+bn.po | 292 ++++++++++++----------------------------
contents+ca.po | 302 +++++++++++++-----------------------------
contents+cs.po | 237 ++++++++++++---------------------
contents+da.po | 195 ++++++++++++---------------
contents+de.po | 309 +++++++++++++------------------------------
contents+el.po | 259 ++++++++++++------------------------
contents+es-AR.po | 305 +++++++++++++-----------------------------
contents+es.po | 337 +++++++++++++----------------------------------
contents+fa.po | 215 ++++++++++++------------------
contents+fo.po | 198 ++++++++++++----------------
contents+fr.po | 310 +++++++++++++------------------------------
contents+ga.po | 295 ++++++++++++-----------------------------
contents+gu.po | 195 ++++++++++++---------------
contents+he.po | 215 ++++++++++++------------------
contents+hi.po | 195 ++++++++++++---------------
contents+hu.po | 203 ++++++++++++----------------
contents+id.po | 294 ++++++++++++-----------------------------
contents+is.po | 304 +++++++++++++-----------------------------
contents+it.po | 314 +++++++++++++------------------------------
contents+ja.po | 195 ++++++++++++---------------
contents+ka.po | 335 +++++++++++++---------------------------------
contents+ko.po | 205 ++++++++++++-----------------
contents+mk.po | 197 ++++++++++++---------------
contents+ml.po | 237 ++++++++++++---------------------
contents+my.po | 195 ++++++++++++---------------
contents+nb.po | 203 ++++++++++++----------------
contents+nl.po | 203 ++++++++++++----------------
contents+pl.po | 303 +++++++++++++-----------------------------
contents+pt-BR.po | 310 +++++++++++++------------------------------
contents+pt-PT.po | 308 +++++++++++++------------------------------
contents+ro.po | 217 ++++++++++++------------------
contents+ru.po | 290 +++++++++++++---------------------------
contents+sr.po | 209 ++++++++++++-----------------
contents+sv.po | 199 ++++++++++++----------------
contents+sw.po | 197 ++++++++++++---------------
contents+th.po | 195 ++++++++++++---------------
contents+tr.po | 340 +++++++++++++----------------------------------
contents+uk.po | 198 ++++++++++++----------------
contents+zh-CN.po | 278 +++++++++++++-------------------------
contents+zh-TW.po | 195 ++++++++++++---------------
contents.pot | 388 ++++++++++++++++++++++++------------------------------
42 files changed, 3740 insertions(+), 6836 deletions(-)
diff --git a/contents+ar.po b/contents+ar.po
index 69dc6de48..c3be842cf 100644
--- a/contents+ar.po
+++ b/contents+ar.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Ahmed IB <mee.tbhole(a)gmail.com>, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/otf/teams/1519/ar/)\n"
@@ -280,10 +280,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -352,9 +352,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -937,8 +936,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1143,14 +1142,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1163,7 +1162,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1298,9 +1297,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1479,9 +1477,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1582,9 +1579,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1662,11 +1658,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1786,17 +1781,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1806,9 +1800,7 @@ msgstr "لدي مشكلة مع DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1818,8 +1810,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1829,9 +1821,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1842,8 +1832,8 @@ msgstr "لدي مشكلة مع HTTPS في كل مكان."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1920,12 +1910,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1962,12 +1948,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2057,9 +2039,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2241,9 +2222,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2259,10 +2239,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2300,9 +2279,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2316,10 +2294,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2513,7 +2491,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2524,7 +2502,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3527,8 +3505,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3655,7 +3632,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5138,8 +5115,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5170,12 +5147,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5195,8 +5172,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5207,12 +5184,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5373,8 +5346,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5604,8 +5577,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### التطبيق"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -5873,7 +5846,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6449,9 +6422,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7378,11 +7352,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7482,8 +7455,8 @@ msgstr "شكرا لك على مساندتك لنا!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7530,11 +7503,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7564,9 +7536,8 @@ msgstr "لا ننصح باستعمال تور مع برنامج بيتورنت."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7627,8 +7598,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7646,9 +7616,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+bn.po b/contents+bn.po
index 7c91963b5..400771651 100644
--- a/contents+bn.po
+++ b/contents+bn.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Bengali (https://www.transifex.com/otf/teams/1519/bn/)\n"
@@ -299,15 +299,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"টর ব্রাউজার ইতিমধ্যে দু ' টি এড-অন — <mark><a href=\"https://www.eff.org"
-"/https-everywhere\">HTTPS Everywhere</a></mark> এবং <mark><a "
-"href=\"https://noscript.net/\">NoScript </a></mark>ইন্সটল করা থাকে — এবং "
-"অন্য কিছু যোগ করলে আপনাকে বেনামীকরতে পারে ।"
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -378,13 +374,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"আপনি আমাদের উইকিতে টর + <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">ভিপিএন</a></mark>"
-" সম্পর্কে আরো বিস্তারিত তথ্য পেতে পারেন।"
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -966,8 +958,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1173,20 +1165,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1197,11 +1185,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1339,13 +1325,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"আপনার সমস্যা তালিকাভুক্ত না হলে, আপনি কি সমস্যা সম্মুখীন হচ্ছেন সেটা "
-"সম্পর্কে একটি <mark><a href=\"https://trac.torproject.org\">বাগ "
-"রিপোর্ট</a></mark> করুন।"
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1551,14 +1533,9 @@ msgstr "তারা টর ব্যবহার করার জন্য আ
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"যদি আপনি নিশ্চিত হন যে সমস্ত ট্র্যাফিক টর নেটওয়ার্কে যাবে, তখন আপনি একটি "
-"<mark><a href=\"https://tails.boum.org/\">টাইলস লাইভ অপারেটিং "
-"সিস্টেমটি</a></mark> দেখতে পারবেন যা আপনি USB স্টিক বা ডিভিডি থেকে প্রায় "
-"কোনও কম্পিউটারে শুরু করতে পারেন।"
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1668,12 +1645,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"<mark><a href=\"https://www.torbsd.org/\">TorBSD প্রকল্পে</a></mark> নামে "
-"কিছু আছে, কিন্তু তাদের টর ব্রাউজার আনুষ্ঠানিকভাবে সমর্থন করে না ।"
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1764,16 +1738,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"গার্ড রিলেই কাজ সম্পর্কে আরও তথ্যের জন্য, এন্ট্রি রক্ষীদের উপর এই <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">ব্লগ পোস্ট</a></mark> এবং <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">কাগজ</a></mark> দেখুন।"
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1908,23 +1877,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> হল টর "
-"ব্রাউজারের ডিফল্ট সার্চ ইঞ্জিন ।"
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo এর ব্যবহারকারীদের ট্র্যাক করে না এবং এটি ব্যবহারকারীর অনুসন্ধান "
-"সম্পর্কে কোনো তথ্য সঞ্চয় করে না । DuckDuckGo গোপনীয়তা নীতি<a "
-"href=\"https://duckduckgo.com/privacy\"><mark> সম্পর্কে আরও জানুন ।"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1933,12 +1896,8 @@ msgstr "আমি DuckDuckGo সঙ্গে একটি সমস্যা হ
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"দয়া করে <mark><a href=\"https://duck.co/help\">DuckDuckGo</a></mark> এর "
-"সমর্থন পোর্টাল দেখুন।"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1947,12 +1906,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"আপনি যদি এটি একটি Tor ব্রাউজার সমস্যা বিশ্বাস করি, আমাদের <mark><a "
-"href=\"https://trac.torproject.org/\">বাগ ট্র্যাকার</a></mark> এটি রিপোর্ট "
-"করুন।"
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1961,12 +1917,8 @@ msgstr "আমার NoScript সাথে একটি সমস্যা হ
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"দয়া করে <mark><a href=\"https://noscript.net/faq\">NoScript FAQ</a></mark> "
-"দেখুন ।"
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1976,11 +1928,9 @@ msgstr "আমার HTTPS Everywhere সঙ্গে একটি সমস্
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"দয়া করে <mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS "
-"Everywhere</a></mark> দেখুন ।"
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2069,12 +2019,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2119,12 +2065,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2233,13 +2175,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"যদি আপনি একটি রিলে হতে চান, অনুগ্রহ করে আমাদের <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">টর রিলে"
-" গাইড</a></mark> দেখুন ।"
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2451,12 +2389,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\">টর "
-"ব্রাউজারের নকশা সম্পর্কে আরও জানুন ।</a></mark>"
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2471,14 +2406,10 @@ msgstr "টর ব্রাউজারে প্রতিটি নতুন
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">টর ব্রাউজার নথির নকশা এবং বাস্তবায়ন</a></mark> "
-"এই নকশার পেছনে চিন্তার ব্যাখ্যা করে ।"
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2522,13 +2453,9 @@ msgstr "আমার টর ব্রাউজার কেন ফায়া
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"টর ব্রাউজার <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">ফায়ারফক্স ESR</a></mark> ব্যবহার করে তৈরি করা "
-"হয়, তাই firefox সম্পর্কে ত্রুটি দেখা দিতে পারে ।"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2544,16 +2471,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"আপনি যদি অ্যান্টি-ভাইরাস চালাচ্ছেন, তাহলে দয়া করে দেখুন <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">আমার "
-"অ্যান্টিভাইরাস/ম্যালওয়্যার সুরক্ষা আমাকে টর ব্রাউজারে প্রবেশ থেকে আটকাতে "
-"যাচ্ছে</a></mark>, এটা সাধারণ অ্যান্টি-ভাইরাস/এন্টি ম্যালওয়্যার "
-"সফটওয়্যারের জন্য এই ধরনের ইস্যু ।"
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2746,7 +2668,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2757,7 +2679,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3840,11 +3762,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"আপনি DuckDuckGo-এর পেঁয়াজের সেবায় যুক্ত হয়ে অন্যান্য পেঁয়াজের সেবায় "
-"প্রবেশ করতে পারবেন কিনা তা নিশ্চিত করতে পারবেন ।"
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -3987,7 +3906,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5487,11 +5406,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"যেমন, DuckDuckGo পেঁয়াজ <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a> ।"
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5525,20 +5442,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"<mark><a href=\"https://securedrop.org/\">SecureDrop</a></mark> বা <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, নিরাপদ সফটওয়্যার "
-"আপডেট এবং <mark><a href=\"https://www.facebook.com/notes/protect-the-graph"
-"/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>-এর মতো জনপ্রিয় ওয়েব সাইটে "
-"পৌঁছানোর জন্য, সাংবাদিকদের মধ্যে নিরাপদ চ্যাট এবং ফাইল শেয়ারিং-এর মাধ্যমে "
-"তাজা যোগাযোগ এবং আরও নিরাপদ উপায়ের জন্য অনিওন পরিষেবাগুলির উপর নির্ভর করে ।"
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5560,8 +5470,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5572,12 +5482,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5735,8 +5641,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5966,7 +5872,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6235,7 +6141,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6814,9 +6720,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7754,16 +7661,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"এছাড়াও, 3 এর বেশী পথ ব্যবহার করে, প্রথমে কারণ এটি নিরাপত্তা আক্রমণের "
-"makesdenial সহজ, এবং দ্বিতীয়ত কারণ এটি একটি শনাক্তকারী হিসেবে কাজ করতে পারে"
-" যদি শুধুমাত্র অল্প সংখ্যক ব্যবহারকারীর যদি আপনার মতো একই পথের দৈর্ঘ্য থাকে "
-"।"
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -7864,11 +7766,9 @@ msgstr "আপনার সমর্থনের জন্য ধন্যবা
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"আপনি আমাদের <mark><a href=\"https://donate.torproject.org/donor-faq\">দাতা "
-"FAQ</a></mark> সম্পর্কে আরো তথ্য পেতে পারেন."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -7926,17 +7826,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"আমাদের আর্থিক প্রতিবেদনগুলিতে আমাদের সমস্ত <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">স্পনসর</a></mark>"
-" এবং <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">ব্লগ "
-"পোস্টগুলির</a></mark> একটি তালিকা দেখুন।"
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7967,13 +7861,9 @@ msgstr "আমরা BitTorrent এর সাথে টর ব্যবহার
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"আরও বিস্তারিত জানার জন্য, আমাদের <mark><a href=\"https://blog.torproject.org"
-"/bittorrent-over-tor-isnt-good-idea\">ব্লগ পোস্টটি বিষয়টিতে</a></mark> "
-"দেখুন।"
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8048,12 +7938,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"নেটওয়ার্ক ফাংশন কিভাবে আপনি <mark><a "
-"href=\"https://metrics.torproject.org/\">টর মেট্রিকগুলো</a></mark> চেক করতে "
-"পারেন তার কিছু নিরাপদ পরিমাপ আমরা গ্রহণ করি."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8072,13 +7958,9 @@ msgstr "না, আমরা কোনো অনলাইন সেবা প্
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"আমাদের সকল সফটওয়্যার প্রজেক্টের একটি তালিকা আমাদের <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">প্রকল্পগুলো "
-"পৃষ্ঠায়</a></mark> পাওয়া যাবে ।"
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+ca.po b/contents+ca.po
index 1e1d5a721..2e8e8b567 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Ecron <ecron_89(a)hotmail.com>, 2019\n"
"Language-Team: Catalan (https://www.transifex.com/otf/teams/1519/ca/)\n"
@@ -319,15 +319,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"El Navegador Tor ja ve instal·lat amb dos complements: <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> i "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark>, i afegir-hi "
-"qualsevol altra cosa podria fer perdre l'anonimat."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -414,13 +410,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Podeu trobar informació més detallada sobre Tor + VPN al <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nostre"
-" wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1097,8 +1089,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1304,20 +1296,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1328,11 +1316,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1473,13 +1459,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Si el vostre problema no apareix, envieu un <mark><a "
-"href=\"https://trac.torproject.org\">informe d'error</a></mark> sobre el que"
-" estigueu experimentant."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1685,14 +1667,9 @@ msgstr "Han de configurar-se per separat per utilitzar Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Si heu d'assegurar-vos que tot el trànsit passarà per la xarxa Tor, feu un "
-"cop d'ull al <mark><a href=\"https://tails.boum.org/\">sistema operatiu "
-"Tails Live</a></mark> que podreu iniciar a gairebé qualsevol ordinador des "
-"d'un llapis USB o un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1808,13 +1785,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Hi ha alguna cosa anomenat <mark><a "
-"href=\"https://www.torbsd.org/\">projecte TorBSD</a></mark>, però el seu "
-"navegador Tor no és està oficialment suportat."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1904,18 +1877,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Per obtenir més informació sobre com funcionen els repetidors de guarda, "
-"consulteu aquesta <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">publicació</a></mark> i "
-"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">publicació de blog</a></mark> sobre guàrdies "
-"d'entrada."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2051,24 +2017,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> és el motor "
-"de cerca predeterminat del navegador Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo no fa el seguiment dels seus usuaris ni emmagatzema dades sobre "
-"les cerques dels usuaris. Més informació sobre la <mark><a "
-"href=\"https://duckduckgo.com/privacy\">política de privadesa de "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2077,12 +2036,8 @@ msgstr "Estic tenint un problema amb DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Consulteu el <mark><a href=\"https://duck.co/help\">portal d'assistència "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2091,12 +2046,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Si creieu que aquest és un problema del navegador Tor, informeu-lo al nostre"
-" <mark><a href=\"https://trac.torproject.org/\">seguidor "
-"d'errors</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2105,12 +2057,8 @@ msgstr "Tinc un problema amb NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Consulteu les <mark><a href=\"https://noscript.net/faq\">PMF de "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2120,11 +2068,9 @@ msgstr "Tinc un problema amb HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Siusplau mira la<mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2213,12 +2159,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2263,12 +2205,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Circuit"
-" nou per a aquest lloc\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2380,13 +2318,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Si voleu convertir-vos en un repetidor, consulteu la nostra <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia de"
-" repetidors de Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2599,12 +2533,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\">Més"
-" informació sobre el disseny del navegador Tor.</a></mark>"
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2619,15 +2550,10 @@ msgstr "Al navegador Tor, cada nou domini rep el seu propi circuit."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"En el document <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\"> Disseny i la implementació del navegador Tor</a></mark> també"
-" expliquem el pensament darrere d'aquest disseny."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2672,13 +2598,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"El Navegador Tor està construït utilitzant <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark>, de manera que es poden produir errors respecte a Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2694,16 +2616,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Si esteu executant un antivirus, consulteu <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">La meva protecció "
-"antivirus/malware no em permet accedir al navegador Tor</a></mark>, és "
-"habitual que el programari antivirus o antimalware produeixi aquest tipus de"
-" problema."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2896,7 +2813,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2907,7 +2824,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3990,12 +3907,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"També podeu assegurar-vos que podeu accedir a altres serveis de onion "
-"connectant-vos al <a href=\"http://3g2upl4pq6kufc4m.onion\">servei de onion "
-"de DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4144,7 +4057,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5648,11 +5561,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Per exemple, la onion DuckDuckGo és <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5687,21 +5598,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Els serveis de onion també es basen en el xat i l'intercanvi d'arxius sense "
-"metadades, una interacció més segura entre els periodistes i les seves "
-"fonts, com ara <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> o <mark>OnionShare<a "
-"href=\"https://onionshare.org/\"></mark>, actualitzacions de programari més "
-"segures i formes més segures d'arribar a llocs web populars com <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5723,8 +5626,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5735,12 +5638,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5901,8 +5800,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6135,7 +6034,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6404,8 +6303,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Dimoni"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6982,9 +6881,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7921,18 +7821,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"A més, l'ús de rutes de més de 3 pot fer malbé l'anonimat, primer, perquè "
-"facilita els atacs de<mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denegació de "
-"seguretat</a></mark> i, en segon lloc, perquè podria actuar com a "
-"identificador si només un petit nombre d'usuaris tenen la mateixa longitud "
-"de camí."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8033,12 +7926,9 @@ msgstr "Gràcies pel teu suport!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Podeu trobar més informació sobre la donació a les nostres <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">preguntes freqüents sobre "
-"els donants</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8097,17 +7987,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Consulteu una llista de tots els <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">nostres "
-"patrocinadors</a></mark><mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\"> i una sèrie de "
-"publicacions</a></mark> sobre els nostres informes financers."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8138,13 +8022,9 @@ msgstr "No recomanem utilitzar Tor amb BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Per obtenir més informació, consulteu la <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">nostra publicació de bloc sobre el tema</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8219,11 +8099,8 @@ msgstr "Tor no guarda registres que puguin identificar un usuari concret."
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Realitzem mesures segures sobre com funciona la xarxa, que podeu consultar a"
-" <mark><a href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8242,12 +8119,9 @@ msgstr "No, no oferim cap servei en línia."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Podeu trobar una llista de tots els nostres projectes de programari a la "
-"nostra pàgina de projectes."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+cs.po b/contents+cs.po
index 4bd92ed2f..262d49950 100644
--- a/contents+cs.po
+++ b/contents+cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Michal Stanke <mstanke(a)mozilla.cz>, 2019\n"
"Language-Team: Czech (https://www.transifex.com/otf/teams/1519/cs/)\n"
@@ -295,15 +295,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Prohlížeč Tor má už v základu nainstalované doplňky <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> a "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark>. Přidání dalších"
-" může omezit ochranu vaší anonymity."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -374,13 +370,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Podrobné informace o společném používání Toru a VPN najdete na <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">naší "
-"wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -962,8 +954,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1168,14 +1160,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1188,7 +1180,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1326,12 +1318,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Pokud váš problém uvedený není, <mark><a "
-"href=\"https://trac.torproject.org\">nahlaste ho prosím</a></mark>."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1528,14 +1517,9 @@ msgstr "Každá aplikace musí být pro používání sítě Tor nastavena zvlá
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Pokud si chcete být jisti, že všechna vaše spojení procházejí sítí Tor, "
-"zkuste <mark><a href=\"https://tails.boum.org/\">operační systém "
-"Tails</a></mark>, který můžete spustit na téměř jakémkoliv počítači z USB "
-"flash disku nebo z DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1641,13 +1625,9 @@ msgstr "V tuto chvíli bohužel prohlížeč Tor systémy *BSD nepodporuje?"
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Existuje projekt <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, který ale nemá oficiální"
-" podporu."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1735,17 +1715,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Pro více informací o fungování uzlů si přečtěte <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">tento příspěvek na blogu</a></mark> a související <mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">práci</a></mark>."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1875,23 +1849,17 @@ msgstr "Jaké vyhledávače používá prohlížeč Tor aby ochránil mé soukro
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"Výchozím vyhledávačem prohlížeče Tor je <mark><a "
-"href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo nesleduje své uživatele a o vyhledávání neukládá žádná data. "
-"Můžete si přečíst <mark><a href=\"https://duckduckgo.com/privacy\">zásady "
-"ochrany osobních údajů DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1900,12 +1868,8 @@ msgstr "Mám problém s fungováním DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Navštivte prosím <mark><a href=\"https://duck.co/help\">portál podpory "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1914,11 +1878,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Pokud myslíte, že jde o problém s prohlížečem Tor, <mark><a "
-"href=\"https://trac.torproject.org/\">nahalste to prosím</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1927,12 +1889,8 @@ msgstr "NoScript mi způsobuje problémy."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Podívejte se prosím na <mark><a "
-"href=\"https://noscript.net/faq\">nejčastější otázky k NoScriptu</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1942,11 +1900,9 @@ msgstr "Mám problémy s fungováním HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Podívejte se prosím na <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">nejčastější otázky k HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2022,12 +1978,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2064,12 +2016,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2159,9 +2107,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2343,9 +2290,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2361,10 +2307,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2402,9 +2347,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2418,10 +2362,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2615,7 +2559,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2626,7 +2570,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3591,8 +3535,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3719,7 +3662,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5195,8 +5138,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5227,12 +5170,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5252,8 +5195,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5264,12 +5207,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5427,8 +5366,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5658,7 +5597,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5927,7 +5866,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6503,9 +6442,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7430,11 +7370,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7534,8 +7473,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7582,11 +7521,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7616,9 +7554,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7679,8 +7616,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7698,9 +7634,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+da.po b/contents+da.po
index a194e676f..6b95aa3c0 100644
--- a/contents+da.po
+++ b/contents+da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: scootergrisen, 2019\n"
"Language-Team: Danish (https://www.transifex.com/otf/teams/1519/da/)\n"
@@ -274,10 +274,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -346,9 +346,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -931,8 +930,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1137,14 +1136,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1157,7 +1156,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1292,9 +1291,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1473,9 +1471,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1574,9 +1571,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1654,11 +1650,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1779,17 +1774,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1799,9 +1793,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1811,8 +1803,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1822,9 +1814,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1835,8 +1825,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1913,9 +1903,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1953,9 +1941,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2046,9 +2032,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2230,9 +2215,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2248,10 +2232,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2289,9 +2272,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2305,10 +2287,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2502,7 +2484,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2513,7 +2495,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3480,8 +3462,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3608,7 +3589,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5084,8 +5065,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5116,12 +5097,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5141,7 +5122,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5153,9 +5134,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5314,8 +5293,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5545,7 +5524,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5814,7 +5793,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6390,9 +6369,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7317,11 +7297,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7421,8 +7400,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7469,11 +7448,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7503,9 +7481,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7566,8 +7543,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7585,9 +7561,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+de.po b/contents+de.po
index b52b71a4d..dff3f9453 100644
--- a/contents+de.po
+++ b/contents+de.po
@@ -6,16 +6,16 @@
# c8faa9c4b9d81319c5c2fd62ae3a9956, 2019
# Ettore Atalan <atalanttore(a)googlemail.com>, 2019
# erinm, 2019
-# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
# Emma Peel, 2019
+# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019\n"
"Language-Team: German (https://www.transifex.com/otf/teams/1519/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -304,15 +304,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser hat zwei vorinstallierte Add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"und <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — jede "
-"andere Erweiterung könnte dich deanomysieren."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -383,13 +379,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Weitere Informationen über Tor + VPN findest du in <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">unserem"
-" Wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -984,8 +976,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1230,20 +1222,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1255,11 +1243,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1408,13 +1394,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Wenn Dein Problem nicht aufgelistet ist, erstelle bitte einen <mark><a "
-"href=\"https://trac.torproject.org\">Fehlerbericht </a></mark> über das "
-"aufgetretene Problem."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1629,14 +1611,9 @@ msgstr "Sie müssen getrennt konfiguriert werden, um Tor zu verwenden."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Um sicher zu sein, dass alle Verbindungen durch das Tor-Netzwerk geschickt "
-"werden, probiere das <mark><a href=\"https://tails.boum.org/\">Tails-Live-"
-"System</a></mark> aus, das auf fast allen Computer von einem USB-Stick oder "
-"einer DVD gestartet werden kann."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1750,13 +1727,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Es gibt das <mark><a href=\"https://www.torbsd.org/\">TorBSR-"
-"Projekt</a></mark>, aber dieser Tor Browser wird nicht offiziell "
-"unterstützt."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1849,17 +1822,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Für weitere Informationen wie Wächter-Relais funktionieren, siehe diesen "
-"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">Blogbeitrag</a></mark> und diese <mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">Publikation</a></mark>."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2000,24 +1967,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> ist die "
-"Standard-Suchmaschine in Tor Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo verwendet keine Tracker und speichert keine Daten über Suchen. "
-"Erfahre mehr über die <mark><a "
-"href=\"https://duckduckgo.com/privacy\">Datenschutzrichtlinie von "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2026,12 +1986,8 @@ msgstr "Ich habe Schwierigkeiten mit DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Bitte versuche es im <mark><a href=\"https://duck.co/help\">DuckDuckGo-"
-"Hilfe-Portal</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2040,12 +1996,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Wenn du das für einen Fehler in Tor Browser hältst, erstelle bitte einen "
-"Bericht in unserer <mark><a href=\"https://trac.torproject.org/\">Fehler-"
-"Datenbank</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2054,12 +2007,8 @@ msgstr "Ich habe Schwierigkeiten mit NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Siehe <mark><a href=\"https://noscript.net/faq\">Häufig gestellte Fragen zu "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2069,11 +2018,9 @@ msgstr "Ich habe Schwierigkeiten mit HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Siehe <mark><a href=\"https://www.eff.org/https-everywhere/faq\">Häufig "
-"gestellte Fragen zu HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2162,12 +2109,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2211,12 +2154,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2322,13 +2261,9 @@ msgstr "Das heißt, dass dein Computer nicht Verkehr für andere weiterleitet."
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Um ein Relay zu betreiben, siehe unsere <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Relay-"
-"Anleitung</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2542,13 +2477,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Mehr über "
-"das Design von Tor Browser</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2564,15 +2495,10 @@ msgstr "Im Tor Browser bekommt jede neue Domain ihren eigenen Netzwerk-Pfad."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Das Dokument <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">Entwurf und Umsetzung von Tor Browser</a></mark> erklärt die "
-"Idee dahinter ausführlicher."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2616,13 +2542,9 @@ msgstr "Warum meldet mein Tor Browser, dass Firefox nicht funktioniert?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser baut auf <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark> auf, Probleme von Firefox"
-" können also auftreten."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2638,15 +2560,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Wenn du ein Anti-Viren-Programm benutzt, siehe <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Mein Anti-Viren-Programm "
-"blockiert meinen Zugang zu Tor Browser</a></mark>. Es kommt oft vor, dass "
-"Anti-Viren- / Anti-Malware-Programme solche Probleme verursachen."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2839,7 +2757,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2850,7 +2768,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3948,12 +3866,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Du kannst auch sicherstellen, dass andere .onion-Dienste erreichbar sind, "
-"z.B. der <a href=\"http://3g2upl4pq6kufc4m.onion\">Onion-Dienst von "
-"DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4104,7 +4018,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5609,11 +5523,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Zum Beispiel ist der Onion-Dienst von DuckDuckgo <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5647,21 +5559,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Onion-Dienste basieren auch auf Chat und Austausch von Dateien ohne "
-"Metadaten, sicherer Interaktion zwischen Journalist*innen und ihren Quellen "
-"mittels <mark><a href=\"https://securedrop.org/\">SecureDrop</a></mark> oder"
-" <mark><a href=\"https://onionshare.org/\">OnionShare</a></mark>, sichereren"
-" Software-Updates und sichereren Möglichkeiten, bekannte Webseiten wie "
-"<mark>Facebook<a href=\"https://www.facebook.com/notes/protect-the-graph"
-"/making-connections-to-facebook-more-secure/1526085754298237/\"></a> zu "
-"erreichen."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5685,8 +5589,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5699,12 +5603,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5866,8 +5766,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6110,8 +6010,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6440,8 +6340,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "### dienst"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7151,13 +7051,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI steht für \"Open Observatory of Network Interference\", es ist ein "
-"globales Beobachtungsnetzwerk zur Erkennung von [Zensur](#Netzwerk-Zensur), "
-"Überwachung und [Verkehr](#Verkehr) Manipulation im Internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8271,17 +8169,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Pfade länger als 3 können auch deine Anonymität gefährden, zum einen weil es"
-" <mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial of "
-"security</a></mark>-Angriffe einfacher macht, und zum anderen ist es dadurch"
-" möglich, einen kleinen Teil der Nutzer*innen zu identifizieren, welche die "
-"gleiche Pfadlänge haben wie du."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8382,11 +8274,9 @@ msgstr "Danke für Ihre Unterstützung!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Weitere Information über Spenden finden sich in unserer <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">Spenden-FAQ</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8445,17 +8335,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Siehe die <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">Liste unserer "
-"Sponsor*innen</a></mark> und eine Serie von <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">Blogeinträgen</a></mark>"
-" mit finanziellen Berichten."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8489,13 +8373,9 @@ msgstr "Wir empfehlen es nicht, Tor zusammen mit BitTorrent zu nutzen."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Für weitere Details siehe unseren <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">Blogbeitrag darüber</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8572,12 +8452,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Wie erfassen einige Daten darüber, wie gut das Tor-Netzwerk funktioniert, "
-"siehe unsere Seite <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8596,12 +8472,9 @@ msgstr "Nein, wir bieten keine Online-Dienste an."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Eine List all unserer Software-Projekte gibt es auf unserer <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">Projektseite</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+el.po b/contents+el.po
index 7da5d918b..df310e452 100644
--- a/contents+el.po
+++ b/contents+el.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Sofia K., 2019\n"
"Language-Team: Greek (https://www.transifex.com/otf/teams/1519/el/)\n"
@@ -303,15 +303,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Ο Tor Browser έχει ήδη δυο add-ons προεγκατεστημένα - το <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"και το <mark><a href=\"https://noscript.net/\">NoScript</a></mark> - και "
-"προσθέτοντας οποιοδήποτε άλλο μπορεί να σας αποανωνυμοποιήσει."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -382,14 +378,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Μπορείτε να βρείτε περισσότερες λεπτομερείς πληροφορίες για το Tor + VPN στο"
-" <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">wiki "
-"μας</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -971,8 +962,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1177,14 +1168,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1197,7 +1188,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1337,13 +1328,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Αν δεν είναι καταχωρημένο, παρακαλώ στείλτε μια<mark><a "
-"href=\"https://trac.torproject.org\">αναφορά προβλήματος</a></mark>αναφορικά"
-" με αυτό που αντιμετωπίζετε."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1549,15 +1536,9 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Αν χρειάζεστε να είστε σίγουρος ότι όλες οι κινήσεις θα περνάνε από το "
-"δίκτυο Tor ρίξτε μια ματιά στο<mark><a "
-"href=\"https://tails.boum.org/\">Επισυνάπτει ζωντανό σύστημα "
-"λειτουργίας</a></mark>, που μπορείτε να εκκινήσετε σε σχεδόν κάθε υπολογιστή"
-" χρησιμοποιώντας στικάκι USB ή DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1674,13 +1655,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Υπάρχει κάτι που λέγεται the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, αλλά ο Tor "
-"Browser τους δεν υποστηρίζεται επισήμως."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1775,11 +1752,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1913,19 +1889,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"Το <mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> είναι η "
-"προεπιλεγμένη μηχανή αναζήτησης στον Tor Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1935,12 +1908,8 @@ msgstr "Έχω ένα πρόβλημα με το DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Ανατρέξτε στην <mark><a href=\"https://duck.co/help\">υποστήριξη του "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1949,12 +1918,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Αν πιστεύετε ότι πρόκειται για πρόβλημα του Tor Browser, παρακαλούμε να το "
-"αναφέρετε στο <mark><a href=\"https://trac.torproject.org/\">bug "
-"tracker</a></mark> μας."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1963,12 +1929,8 @@ msgstr "Έχω ένα πρόβλημα με το NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Παρακαλώ ανατρέξτε στο </mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1978,11 +1940,9 @@ msgstr "Έχω ένα πρόβλημα με το HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Παρακαλώ ανατρέξτε στο <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2068,12 +2028,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2114,12 +2070,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2228,13 +2180,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Αν θέλετε να γίνετε κόμβος, παρακαλούμε να δείτε τον <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Οδηγό "
-"Κόμβων του Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2440,9 +2388,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2458,10 +2405,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2507,14 +2453,9 @@ msgstr "Γιατί ο περιηγητής Tor λέει ότι ο Firefox δεν
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Ο Tor Browser είναι κατασκευασμένος χρησιμοποιώντας το <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark>, επομένως μπορεί να προκύψουν σφάλματα σχετικά με τον "
-"Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2529,10 +2470,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2726,7 +2667,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2737,7 +2678,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3828,12 +3769,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Μπορείτε επίσης να εξασφαλίσετε ότι έχετε πρόσβαση σε άλλες υπηρεσίες onion,"
-" με σύνδεση στο <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's Onion"
-" Service</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -3976,7 +3913,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5469,11 +5406,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Για παράδειγμα, το DuckDuckGo onion είναι <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5508,12 +5443,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5537,8 +5472,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5549,12 +5484,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5712,8 +5643,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5943,7 +5874,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6212,7 +6143,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6793,9 +6724,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7725,11 +7657,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7831,12 +7762,9 @@ msgstr "Ευχαριστούμε για τη στήριξή σας!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με τις δωρεές στις "
-"<mark><a href=\"https://donate.torproject.org/donor-faq\">συχνές ερωτήσεις "
-"δωρητών</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -7892,17 +7820,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Δείτε τη λίστα με όλους τους <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">χορηγούς "
-"μας</a></mark> και μια σειρά από <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">δημοσιεύσεις "
-"blog</a></mark> για τις δηλώσεις των οικονομικών μας."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7933,13 +7855,9 @@ msgstr "Δεν προτείνουμε τη ταυτόχρονη χρήση το
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Για περισσότερες λεπτομέρειες, ανατρέξτε στην <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">ανάρτηση μας σχετικά με το θέμα</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8012,12 +7930,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Πραγματοποιούμε κάποιες ασφαλείς μετρήσεις για το πώς λειτουργεί το δίκτυο, "
-"τις οποίες μπορείτε να δείτε στο <mark><a "
-"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8034,9 +7948,8 @@ msgstr "Όχι, δεν παρέχουμε ηλεκτρονικές υπηρεσ
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+es-AR.po b/contents+es-AR.po
index 64f7d5919..b6f5703d6 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Zuhualime Akoochimoya, 2019\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
@@ -289,15 +289,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"El Navegador Tor ya tiene instalados dos complementos - <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere y <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> - y añadir cualquier cosa"
-" más puede dejar tu anonimato sin efecto."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -368,13 +364,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Podés encontrar información más detallada acerca de Tor + RPV en <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nuestra"
-" wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -958,8 +950,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1164,14 +1156,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1184,7 +1176,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1324,13 +1316,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Si tu dificultad no está listada, por favor envía un <mark><a "
-"href=\"https://trac.torproject.org\">reporte de error</a></mark>acerca de lo"
-" que estás experimentando."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1535,14 +1523,9 @@ msgstr "Necesitan ser configurados separadamente para usar Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Si necesitás estar seguro que todo el tráfico irá a través de la red de Tor,"
-" hechale una mirada al <mark><a href=\"https://tails.boum.org/\">sistema "
-"operativo Tails</a></mark>, el cual podés iniciar en casi cualquier "
-"computadora desde un pendrive o un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1657,12 +1640,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Hay algo llamado <mark><a href=\"https://www.torbsd.org/\">el proyecto "
-"TorBSD</a></mark>, pero su Navegador Tor no está soportado oficialmente."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1754,18 +1734,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Para más información sobre como trabajan los relevos de guardia, mirá esta "
-"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">entrada de blog</a></mark> y <mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">artículo</a></mark> sobre "
-"guardias de entrada."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1902,24 +1875,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> es el motor "
-"de búsqueda por defecto en el Navegador Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo no rastrea sus usuarios ni almacena ningún dato acerca de "
-"búsquedas de usuario. Aprendé más acerca de la <mark><a "
-"href=\"https://duckduckgo.com/privacy\">política de privacidad de "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1928,12 +1894,8 @@ msgstr "Estoy teniendo un problema con DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Por favor mirá el <mark><a href=\"https://duck.co/help\">portal de soporte "
-"de DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1942,12 +1904,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Si creés que ésta es una dificultad del Navegador Tor, por favor reportala "
-"en nuestro <mark><a href=\"https://trac.torproject.org/\">rastreador de "
-"errores</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1956,12 +1915,8 @@ msgstr "Estoy teniendo un problema con NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Por favor mirá las <mark><a href=\"https://noscript.net/faq\">PMF de "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1971,11 +1926,9 @@ msgstr "Estoy teniendo un problema con HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Por favor mirá <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">PMF HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2065,12 +2018,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2115,12 +2064,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2230,13 +2175,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Si quisieras correr un relevo, por favor mirá nuestra <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">guía de"
-" relevo Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2442,13 +2383,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Aprendé más "
-"acerca del diseño del Navegador Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2463,15 +2400,10 @@ msgstr "En el Navegador Tor, cada nuevo dominio obtiene su propio circuito."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"El documento <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">el diseño e implementación del Navegador Tor</a></mark> "
-"explica con más amplitud el pensamiento detrás de éste diseño."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2518,13 +2450,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"El Navegador Tor se construye usando <mark><a href=\"https://www.mozilla.org"
-"/en-US/firefox/organizations/\">Firefox ESR</a></mark>, por lo que pueden "
-"ocurrir errores concernientes a Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2540,16 +2468,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Si estás corriendo un antivirus, por favor mirá <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Mi protección contra virus y "
-"programas maliciosos está bloqueándome de acceder al Navegador "
-"Tor</a></mark>, es común que programas antivirus/protectores contra "
-"programas maliciosos causen éste tipo de dificultad."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2742,7 +2665,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2753,7 +2676,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3847,12 +3770,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Podés también asegurarte que seas capaz de acceder otros servicios onion "
-"conectándote al <a href=\"http://3g2upl4pq6kufc4m.onion\">servicio onion de "
-"DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4004,7 +3923,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5500,11 +5419,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Por ejemplo, el onion de DuckDuckGo es <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5539,22 +5456,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"A los servicios onion se les confía también para charlar y compartir "
-"archivos libres de metadatos, interacción más segura entre periodistas y sus"
-" fuentes, como por ejemplo con <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> u <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, actualizaciones de "
-"programas más seguras, y maneras más seguras de alcanzar sitios web "
-"populares como <mark><a href=\"https://www.facebook.com/notes/protect-the-"
-"graph/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5576,8 +5484,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5588,12 +5496,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5751,8 +5655,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5995,8 +5899,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### Aplicación"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6316,8 +6220,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Demonio"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6993,13 +6897,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI significa \"Observatorio Abierto de Interferencia de Red\", es una red "
-"global de observación para detección de la [censura de red](#network-"
-"censorship), vigilancia y manipulación de [tráfico](#traffic) en internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8087,18 +7989,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"También, usando rutas más largas que 3 se podría dañar el anonimato, primero"
-" porque hace a los ataques de <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denegación de "
-"seguridad</a></mark> más fáciles, y segundo porque podría actuar como un "
-"identificador si solamente un pequeño número de usuarios tiene la misma "
-"longitud de ruta que vos."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8199,12 +8094,9 @@ msgstr "¡Gracias por tu soporte!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Podés encontrar más información acerca de donaciones en nuestras <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">preguntas más frecuentes de"
-" donantes</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8263,17 +8155,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Mirá una lista de todos <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">nuestros "
-"patrocinantes</a></mark> y unas series de <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">entradas de "
-"blog</a></mark> sobre nuestros reportes financieros."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8304,13 +8190,9 @@ msgstr "No recomendamos usar Tor con bittorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Para mayores detalles, por favor mirá nuestra <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">entrada blog sobre el tema</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8389,12 +8271,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Tomamos algunas mediciones seguras de cómo funciona la red, las cuales podés"
-" revisar en <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8413,14 +8291,9 @@ msgstr "No, no proveemos ningún servicio en línea."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Una lista de todos nuestros proyectos de programas puede ser encontrada en "
-"nuestra <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
-"proyectos</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+es.po b/contents+es.po
index da0f48e87..75e965173 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Spanish (https://www.transifex.com/otf/teams/1519/es/)\n"
@@ -318,15 +318,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"El Tor Browser ya trae instalados dos complementos - <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> y "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> - y añadir "
-"cualquier otra cosa podría hacer que pierdas tu anonimato."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -413,13 +409,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Puedes encontrar más información detallada sobre Tor + VPN en <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nuestra"
-" wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1134,11 +1126,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
-"Por ejemplo, `torbrowser-install-win64-9.0_es-ES.exe` está acompañado por "
-"`torbrowser-install-win64-9.0_es-ES.exe.asc`."
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1379,20 +1369,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1405,11 +1391,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1555,12 +1539,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Si tu problema no aparece en la lista, envía un <mark><a href=\"https://trac.torproject.org\">informe de error</a></mark> sobre lo que te está pasando.\n"
-" "
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1769,14 +1750,9 @@ msgstr "Se tienen que configurar de forma separada para usar Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Si necesitas asegurar que todo el tráfico vaya a través de la red Tor, echa "
-"un vistazo al<mark><a href=\"https://tails.boum.org/\">sistema tema "
-"operativo autoarrancable Tails</a></mark> que se puede iniciar en casi "
-"cualquier equipo desde una memoria USB o un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1900,12 +1876,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Existe algo llamado el <mark><a href=\"https://www.torbsd.org/\">proyecto "
-"TorBSD</a></mark>, pero su Navegador Tor no está oficialmente apoyado."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -2001,17 +1974,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Para más información sobre cómo funcionan los repetidores guardián, mira "
-"este <mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">artículo del blog</a></mark> y este <mark><a "
-"href=\"https://www-users.cs.umn.edu/~hoppernj/single_guard.pdf\">documento "
-"técnico</a></mark> sobre guardianes de entrada."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2164,24 +2131,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> es el motor "
-"de búsqueda predeterminado en el Navegador Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo no rastrea a sus usuarios ni almacena información sobre las "
-"búsquedas del usuario. Aprende más sobre <mark><a "
-"href=\"https://duckduckgo.com/privacy\">la política de privacidad de "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2190,12 +2150,8 @@ msgstr "Tengo un problema con DuckDuckgo"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Por favor, visita el <mark><a href=\"https://duck.co/help\">portal de "
-"soporte de DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2204,12 +2160,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Si crees que este es un problema del Navegador Tor, por favor, repórtalo en "
-"nuestro <mark><a href=\"https://trac.torproject.org/\">seguidor de "
-"fallos</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2218,12 +2171,8 @@ msgstr "Tengo un problema con NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Por favor, mira las <mark><a href=\"https://noscript.net/faq\">preguntas "
-"frecuentes (FAQ) de NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2233,11 +2182,9 @@ msgstr "Tengo un problema con HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Por favor, mira las <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">preguntas frecuentes (FAQ) de HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2333,12 +2280,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Menú de "
-"Tor Browser\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2383,12 +2326,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Nuevo "
-"circuito para este sitio\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2504,13 +2443,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Si deseas convertirte en un repetidor, por favor, mira nuestra <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guía de"
-" repetidor Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2726,13 +2661,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Leer más "
-"sobre el diseño del Navegador Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2747,15 +2678,10 @@ msgstr "En el Navegador Tor, cada nuevo dominio tiene su propio circuito."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"El documento de <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\"> Diseño e Implementación del Navegador Tor</a></mark> explica "
-"aún más el pensamiento detrás de este diseño."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2801,13 +2727,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"El Navegador Tor se desarrolló usando <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark>, así que pueden ocurrir errores relacionados con Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2823,15 +2745,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Si estás ejecuanto un anti-virus, por favor, mira <mark><a "
-"href=\"http://support.torproject.org/es/#tbb-10\">Mi antivirus/malware está "
-"impidiéndome el acceso al Navegador Tor</a></mark>, es normal para el "
-"software anti-virus / anti-malware ocasionar este tipo de problemas."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -3047,7 +2965,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-46/
#: (content/tbb/tbb-46/contents+en.lrquestion.title)
msgid "How do I install Tor Browser?"
-msgstr "¿Cómo instalo el Navegador Tor?"
+msgstr "¿Cómo puedo instalar el Navegador Tor?"
#: https//support.torproject.org/tbb/tbb-46/
#: (content/tbb/tbb-46/contents+en.lrquestion.description)
@@ -3055,8 +2973,8 @@ msgid ""
"Please see the [Installation](https://tb-"
"manual.torproject.org/installation/) section in the Tor Browser Manual."
msgstr ""
-"Ver la sección de [instalación](https://tb-"
-"manual.torproject.org/installation/) en el manual del Navegador Tor."
+"Mira en la sección de [instalación](https://tb-"
+"manual.torproject.org/es/installation/) del manual del Navegador Tor."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.title)
@@ -3069,37 +2987,22 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
"doing CONNECT requests to get to Tor relays. (It's fine if they're the same "
"proxy.) Tor also recognizes the torrc options Socks4Proxy and Socks5Proxy."
msgstr ""
-"Puedes ajustar la dirección IP del proxy, el puerto y las credenciales en "
-"los [ajustes de red del Navegador Tor](https://tb-manual.torproject.org"
-"/running-tor-browser/). Si estás utilizando el Navegador Tor de otra forma, "
-"revisa las opciones de configuración \"HTTPProxy\" y \"HTTPSProxy\" en la "
-"[página man](https://2019.www.torproject.org/docs/tor-manual.html.en), y "
-"modifica tu archivo torrc en consecuencia. Necesitarás un proxy HTTP para "
-"realizar peticiones CONNECT a fin de poder conectar con repetidores Tor (no "
-"pasa nada por usar el mismo proxy). Tor también recnoce las opciones "
-"\"Socks4Proxy\" y \"Socks5Proxy\" en el archivo torrc"
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
-"Si tu proxy requiere del uso de credenciales, puedes leer acerca de las "
-"opciones \"HTTPProxyAuthenticator\" y \"HTTPSProxyAuthenticator\". Por ahora"
-" sólo soportamos la acreditación sencilla (basic auth), pero si necesitas "
-"usar una acreditaciónn de tipo NTLM, puedes encontrar [esta entrada "
-"archivada](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) "
-"interesante."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
@@ -4292,12 +4195,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"También puedes asegurarte de poder acceder a otros servicios cebolla "
-"conectando al <a href=\"http://3g2upl4pq6kufc4m.onion\">servicio cebolla de "
-"DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4451,10 +4350,8 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
-"Puedes [leer más sobre HTTPS aquí](https://tb-manual.torproject.org/secure-"
-"connections/)"
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -5965,11 +5862,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Por ejemplo, la dirección cebolla de DuckDuckGo es <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>. "
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -6004,21 +5899,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Los servicios cebolla también se utilizan para chatear y compartir archivos,"
-" sin metadatos, para una interacción más segura entre los periodistas y sus "
-"fuentes como <mark><a href=\"https://securedrop.org/\">SecureDrop</a></mark>"
-" o <mark><a href=\"https://onionshare.org/\">OnionShare</a></mark>, para "
-"actualizaciones de software más seguras, y para acceder de forma más segura "
-"a sitios web populares como <mark><a href=\"https://www.facebook.com/notes"
-"/protect-the-graph/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6044,8 +5931,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Icono cebolla\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6058,12 +5945,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Cebolla verde"
-" con candado\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6249,14 +6132,9 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
-"Puedes informar sobre una incidencia en "
-"[https://trac.torproject.org](https://trac.torproject.org). Usamos la "
-"palabra clave ff60-esr para los problemas relacionados con el Navegador Tor "
-"versión 8. Para las incidencias relacionadas con nuestro sitio web indícalo "
-"en el apartado \"component\" como \"Webpages/Website\"."
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -6524,8 +6402,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6851,8 +6729,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "### daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7557,14 +7435,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI significa \"Open Observatory of Network Interference\" (Observatorio "
-"Abierto de Interferencia de Redes), es una red de observación global para "
-"detectar [censura](#network-censorship), vigilancia y manipulación [de "
-"tráfico](#traffic) en Internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8676,18 +8551,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Además, usar más de 3 rutas podría dañar el anonimato, en primer lugar "
-"porque facilita los ataques de <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denegación de "
-"seguridad</a></mark>, y en segundo lugar porque podría actuar como un "
-"identificador si sólo unos pocos usuarios tienen la misma longitud de ruta "
-"que tú."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8791,12 +8659,9 @@ msgstr "¡Gracias por tu apoyo!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Puedes encontrar más información sobre cómo donar en nuestras <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">preguntas frecuentes del "
-"donante</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8853,17 +8718,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Revisa la lista completa de <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">nuestros "
-"patrocinadores</a></mark> y una serie de <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">artículos del "
-"blog</a></mark> sobre nuestros informes financieros."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8898,13 +8757,9 @@ msgstr "No recomendamos usar Tor con BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Para más detalles lee nuestro <mark><a href=\"https://blog.torproject.org"
-"/bittorrent-over-tor-isnt-good-idea\">artículo del blog sobre este "
-"tema</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8981,12 +8836,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Tomamos algunas mediciones seguras de cómo funciona la red, que puedes "
-"revisar en <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -9005,13 +8856,9 @@ msgstr "No, no proporcionamos ningún servicio en línea."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Puedes leer una lista de todos nuestros proyectos de software en la <mark><a"
-" href=\"https://www.torproject.org/projects/projects.html.en\">página de "
-"nuestro proyecto</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+fa.po b/contents+fa.po
index c9c5bdd24..ca7886b3f 100644
--- a/contents+fa.po
+++ b/contents+fa.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Ali A D, 2019\n"
"Language-Team: Persian (https://www.transifex.com/otf/teams/1519/fa/)\n"
@@ -301,15 +301,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"مرورگر تور به طور پیشفرض با دو افزونهی <mark><a href=\"https://www.eff.org"
-"/https-everywhere\">HTTPS Everywhere</a></mark> و <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> عرضه میشود. نصب "
-"افزونههای بیشتر میتواند ناشناس بودن شما را از بین ببرد."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -380,13 +376,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"شما میتوانید اطلاعات بیشتری در مورد تور ـ ویپیان در <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">دانشنامه"
-" ما </a></mark>پیدا کنید."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -970,8 +962,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1176,14 +1168,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1196,7 +1188,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1333,9 +1325,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1520,9 +1511,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1624,9 +1614,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1704,11 +1693,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1830,17 +1818,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1850,9 +1837,7 @@ msgstr "من با داکداکگو یک مشکل دارم."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1862,8 +1847,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1873,9 +1858,7 @@ msgstr "من با NoScript مشکل دارم."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1886,8 +1869,8 @@ msgstr "من با HTTPS Everywhere مشکل دارم."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1964,9 +1947,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -2004,9 +1985,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2098,9 +2077,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2297,9 +2275,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2315,10 +2292,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2358,9 +2334,8 @@ msgstr "چرا مرورگر تو به من میگوید فایرفاکس کا
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2376,10 +2351,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2573,7 +2548,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2584,7 +2559,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3568,8 +3543,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3701,7 +3675,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5180,8 +5154,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5212,20 +5186,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"به سرویسهای پیازی برای چت بدون فراداده (مِتادیتا) یا به اشتراک گذاشتن فایل،"
-" ارتباط بین خبرنگاران یا منابع آنها مانند <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> یا <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>، به روزرسانی امنتر "
-"نرم افزار یا راههای ایمنتر دسترسی به سایتهای محبوب مانند <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">فیسبوک</a></mark> تکیه میشود."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5244,8 +5211,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"آیکون پیاز\"/>"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5256,12 +5223,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5419,8 +5382,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5650,7 +5613,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5919,7 +5882,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6495,9 +6458,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7422,11 +7386,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7526,8 +7489,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7574,11 +7537,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7608,9 +7570,8 @@ msgstr "ما استفاده از تور با بیتتورنت را توصیه
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7671,8 +7632,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7690,9 +7650,8 @@ msgstr "خیر ما خدمات آنلاین نداریم "
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+fo.po b/contents+fo.po
index da2ca4ff0..30d95b053 100644
--- a/contents+fo.po
+++ b/contents+fo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Faroese (https://www.transifex.com/otf/teams/1519/fo/)\n"
@@ -285,10 +285,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -360,13 +360,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Tú finnur meira nágreiniliga kunning um Tor + VPN á <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\"> "
-"okkara wiki </a></mark>"
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -948,8 +944,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1154,14 +1150,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1174,7 +1170,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1314,9 +1310,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1513,9 +1508,8 @@ msgstr "Tey mugu vera uppset hvör í sínum lagi at brúka Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1623,9 +1617,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1703,11 +1696,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1830,17 +1822,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1850,9 +1841,7 @@ msgstr "Eg havi ein trupuleika við DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1862,8 +1851,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1873,9 +1862,7 @@ msgstr "Eg havi ein trupuleika við NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1886,8 +1873,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1964,9 +1951,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -2004,9 +1989,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2099,9 +2082,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2283,9 +2265,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2301,10 +2282,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2342,9 +2322,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2358,10 +2337,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2555,7 +2534,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2566,7 +2545,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3533,8 +3512,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3661,7 +3639,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5137,8 +5115,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5169,12 +5147,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5194,7 +5172,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5206,9 +5184,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5367,8 +5343,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5598,7 +5574,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5867,7 +5843,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6443,9 +6419,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7370,11 +7347,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7474,8 +7450,8 @@ msgstr "Takk fyri tín stuðul!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7523,11 +7499,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7557,9 +7532,8 @@ msgstr "Vit viðmæla ikki at brúka BitTorrent ígjögnum Tor. "
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7621,8 +7595,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7640,9 +7613,8 @@ msgstr "Nei, vit veita ikki nakrar online tænastur."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+fr.po b/contents+fr.po
index f65006068..dfa788637 100644
--- a/contents+fr.po
+++ b/contents+fr.po
@@ -1,19 +1,19 @@
# Translators:
-# PoorPockets McNewHold <poorpocketsmcnewhold(a)protonmail.ch>, 2019
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
# David Georges, 2019
# N W, 2019
# erinm, 2019
# Emma Peel, 2019
# AO <ao(a)localizationlab.org>, 2019
+# PoorPockets McNewHold <poorpocketsmcnewhold(a)protonmail.ch>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>, 2019\n"
+"Last-Translator: PoorPockets McNewHold <poorpocketsmcnewhold(a)protonmail.ch>, 2019\n"
"Language-Team: French (https://www.transifex.com/otf/teams/1519/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -317,15 +317,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Le Navigateur Tor comprend déjà deux extensions préinstallés, <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS partout</a></mark> et "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark>. En ajouter "
-"d’autres pourrait vous faire perdre votre anonymat."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -396,13 +392,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Plus de précisions sur Tor + RPV se trouvent dans <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">notre "
-"wiki</a></mark> (page en anglais)."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -999,8 +991,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1247,14 +1239,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1269,7 +1261,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1419,13 +1411,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Si votre problème n’y apparaît pas, veuillez remplir un <mark><a "
-"href=\"https://trac.torproject.org\">relevé de bogue</a></mark> (site en "
-"anglais) relatif au problème que vous rencontrez."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1641,15 +1629,9 @@ msgstr "Elles doivent être configurées séparément pour utiliser Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Si vous avez besoin de vous assurer que tout le trafic passe par le réseau "
-"Tor, jetez un coup d’œil au <mark><a "
-"href=\"https://tails.boum.org/\">système d’exploitation autonome "
-"Tails</a></mark>, que vous pouvez lancer sur presque n’importe quel "
-"ordinateur à partir d’une clé USB ou d’un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1767,13 +1749,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Il existe quelque chose appelé <mark><a href=\"https://www.torbsd.org/\">« "
-"TorBSD project »</a></mark> (site en anglais), mais leur Navigateur Tor "
-"n’est pas pris en charge officiellement."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1873,18 +1851,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Pour plus de précisions sur le fonctionnement des relais de garde, consultez"
-" cet <mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">article de blogue</a></mark> (page en anglais) "
-"et cet <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">article</a></mark> sur les "
-"gardes d’entrée (fichier PDF en anglais)."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2027,24 +1998,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> est le "
-"moteur de recherche par défaut dans le Navigateur Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo ne suit pas ses utilisateurs à la trace ni n’enregistre aucune "
-"donnée sur les recherches de ses utilisateurs. Apprenez-en davantage sur la "
-"<mark><a href=\"https://duckduckgo.com/privacy\">politique de "
-"confidentialité de DuckDuckGo</a></mark> (page en anglais)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2053,12 +2017,8 @@ msgstr "Je rencontre un problème avec DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Veuillez consulter le <mark><a href=\"https://duck.co/help\">portail "
-"d’assistance de DuckDuckGo</a></mark> (site en anglais)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2067,12 +2027,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Si vous croyez que le problème provient du Navigateur Tor, veuillez le "
-"signaler sur notre <mark><a href=\"https://trac.torproject.org/\">système "
-"de suivi des bogues</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2081,12 +2038,8 @@ msgstr "Je rencontre un problème avec NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Veuillez consulter la <mark><a href=\"https://noscript.net/faq\">FAQ de "
-"NoScript</a></mark> (site en anglais)."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2096,11 +2049,9 @@ msgstr "Je rencontre un problème avec HTTPS partout."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Veuillez consulter la <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">FAQ de HTTPS partout</a></mark> (site en anglais)."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2192,12 +2143,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Menu du "
-"Navigateur Tor\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2243,12 +2190,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Nouveau"
-" circuit pour ce site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2360,13 +2303,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Si vous souhaitez devenir un relais, veuillez consulter notre <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">guide "
-"sur les relais Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2584,13 +2523,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\">En "
-"apprendre davantage sur la conception du Navigateur Tor</a></mark> (site en "
-"anglais)."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2607,15 +2542,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Les réflexions liées à cette conception sont expliquées dans le document "
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">La conception et la mise en œuvre du Navigateur "
-"Tor</a></mark> (en anglais)."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2663,14 +2593,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Le Navigateur Tor est développé à partir de <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark> (page en anglais) et il est donc possible que des erreurs "
-"concernant Firefox surviennent."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2686,16 +2611,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Si vous utilisez un antivirus, veuillez consulter <mark><a "
-"href=\"http://support.torproject.org/fr/#tbb-10\">Mon antivirus ou ma "
-"protection contre les programmes malveillants m’empêche d’accéder au "
-"Navigateur Tor</a></mark>. Il n’est pas rare que les logiciels antivirus ou "
-"antiprogrammes malveillants provoquent ce genre de problème."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2888,7 +2808,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2899,7 +2819,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -4020,12 +3940,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Vous pouvez aussi vous assurer que vous arrivez à accéder à d’autres "
-"services onion en vous connectant au <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">service onion de DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4177,7 +4093,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5687,11 +5603,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Par exemple, l’onion DuckDuckGo est <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5728,23 +5642,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"L’on compte aussi sur les service onion pour du clavardage (dialogue en "
-"ligne) et du partage de fichiers sans métadonnées, des interactions plus "
-"sûres entre des journalistes et leurs sources avec <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> ou avec <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark> (sites en anglais), "
-"des mises à jour de logiciels elles aussi plus sûres, et des façons plus "
-"sécurisées d’accéder à des sites populaires tels que <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark> (page en "
-"anglais)."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5769,8 +5673,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Icône d’oignon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5783,12 +5687,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Oignon vert "
-"avec un cadenas\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5950,8 +5850,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6199,7 +6099,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr "### appli"
#: https//support.torproject.org/misc/glossary/
@@ -6530,7 +6430,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr "### démon"
#: https//support.torproject.org/misc/glossary/
@@ -7241,14 +7141,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI signifie Observatoire ouvert des interférences réseau (« Open "
-"Observatory of Network Interference »). C’est un réseau mondial "
-"d’observation afin de détecter la [censure](#network-censorship), la "
-"surveillance et la manipulation du [trafic](#traffic) d’Internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8365,18 +8262,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"De plus, utiliser des chemins plus longs que 3 pourrait nuire à l’anonymat. "
-"En premier lieu, car cela facilite les attaques par <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">déni de "
-"sécurité</a></mark> (page en anglais), et en second lieu parce que cela "
-"pourrait servir à vous identifier si seulement quelques utilisateurs ont la "
-"même longueur de chemin que vous."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8477,12 +8367,9 @@ msgstr "Nous vous remercions de votre soutien !"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Plus de précisions sur les dons se trouvent dans notre <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">FAQ pour les "
-"donateurs</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8545,17 +8432,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Consultez la liste de tous <mark><a "
-"href=\"https://www.torproject.org/fr/about/sponsors/\">nos "
-"commanditaires</a></mark> et une série d’<mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">articles de "
-"blogue</a></mark> (site en anglais) sur nos rapports financiers."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8589,13 +8470,9 @@ msgstr "Nous ne recommandons pas d’utiliser Tor avec BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Pour de plus de précisions, veuillez consulter notre <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">article de blogue à ce sujet</a></mark> (page en anglais)."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8677,13 +8554,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Nous effectuons des mesures sans risques du fonctionnement du réseau, que "
-"vous pouvez consulter sur notre site de mesures <mark><a "
-"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark> (site en "
-"anglais)."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8702,13 +8574,9 @@ msgstr "Non, nous n’offrons aucun service en ligne."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Une liste de tous nos projets de logiciels se trouve sur notre <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html\">page de "
-"projets</a></mark> (page en anglais)."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+ga.po b/contents+ga.po
index 425a74930..fec27e289 100644
--- a/contents+ga.po
+++ b/contents+ga.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Irish (https://www.transifex.com/otf/teams/1519/ga/)\n"
@@ -287,15 +287,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tagann dhá bhreiseán mar chuid de Bhrabhsálaí Tor cheana — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"agus <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — agus dá "
-"gcuirfeá breiseáin eile leis, bheifeá i gcontúirt d'aitheantas a nochtadh."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -366,13 +362,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Is féidir teacht ar thuilleadh eolais maidir le Tor agus VPN ar <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">ár "
-"vicí</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -954,8 +946,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1160,14 +1152,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1180,7 +1172,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1320,12 +1312,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Mura bhfeiceann tú d'fhadhb ann, <mark><a "
-"href=\"https://trac.torproject.org\">déan tuairisc uirthi</a></mark>."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1525,14 +1514,9 @@ msgstr "Caithfidh tú cumrú speisialta a dhéanamh chun Tor a úsáid leo."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Má tá tú ag iarraidh deimhniú go rachaidh an trácht go léir ó do ríomhaire "
-"thar líonra Tor, caith súil ar an gcóras oibriúcháin <mark><a "
-"href=\"https://tails.boum.org/\">Tails live</a></mark>, córas is féidir a "
-"chur i bhfeidhm ar bheagnach aon ríomhaire ó chipín USB nó ó DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1646,13 +1630,9 @@ msgstr "Ní thacaíonn, go hoifigiúil."
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Tá tionscadal darb ainm <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark> ann, ach ní thacóimid "
-"leis an leagan de Bhrabhsálaí Tor atá acu."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1745,17 +1725,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Le tuilleadh eolais maidir le gardaí iontrála a fháil, féach ar <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">an bpostáil bhlag seo</a></mark> agus <mark><a href=\"https"
-"://www-users.cs.umn.edu/~hoppernj/single_guard.pdf\">an páipéar "
-"seo</a></mark>."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1892,24 +1866,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"Is é <mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> an "
-"t-inneall cuardaigh réamhshocraithe i mBrabhsálaí Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"Ní lorgaíonn DuckDuckGo a chuid úsáideoirí agus ní shábhálann sé aon sonraí "
-"maidir leis na cuardaigh a dhéanann siad. Tá tuilleadh eolais ar fáil i "
-"<mark><a href=\"https://duckduckgo.com/privacy\">bpolasaí príobháideachais "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1918,12 +1885,8 @@ msgstr "Tá fadhb agam le DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Féach an <mark><a href=\"https://duck.co/help\">suíomh tacaíochta "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1932,12 +1895,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Má chreideann tú go mbaineann an fhadhb le Brabhsálaí Tor, is féidir leat "
-"tuairisc a dhéanamh ar ár <mark><a "
-"href=\"https://trac.torproject.org/\">rianaire fabhtanna</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1946,12 +1906,8 @@ msgstr "Tá fadhb agam le NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Féach na <mark><a href=\"https://noscript.net/faq\">Ceisteanna Coitianta "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1961,11 +1917,9 @@ msgstr "Tá fadhb agam le HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Féach na ceisteanna coitianta ar shuíomh <mark><a href=\"https://www.eff.org"
-"/https-everywhere/faq\">HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2056,12 +2010,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Roghchlár"
-" Bhrabhsálaí Tor\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2107,12 +2057,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Ciorcad"
-" Nua don Suíomh seo\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2226,13 +2172,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Más mian leat d'athsheachadán féin a rith, féach an <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Lámhleabhar"
-" Athsheachadán Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2448,13 +2390,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Tuilleadh "
-"eolais maidir le dearadh Bhrabhsálaí Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2469,16 +2407,10 @@ msgstr "Cruthaíonn Brabhsálaí Tor ciorcad nua i gcomhair gach fearann nua."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Tugann an cháipéis <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">The Design and Implementation of Tor Browser</a></mark> "
-"tuilleadh eolais maidir leis an dearadh seo agus an smaoineamh taobh thiar "
-"de."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2523,13 +2455,9 @@ msgstr "Cén fáth a ndúirt Brabhsálaí Tor nach bhfuil Firefox ag obair?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tá Brabhsálaí Tor bunaithe ar <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, agus d'fhéadfadh sé go "
-"dtarlódh earráidí a bhaineann le Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2545,15 +2473,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Má tá bogearra frithvíris ar do ríomhaire, féach ar <mark><a "
-"href=\"http://support.torproject.org/ga/#tbb-10\">Cuireann mo bhogearra "
-"frithvíris cosc ar Bhrabhsálaí Tor.</a></mark>; is minic go mbíonn bogearra "
-"frithvíris ina chúis le fadhbanna den sórt seo."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2746,7 +2670,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2757,7 +2681,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3851,12 +3775,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Agus is féidir leat deimhniú go bhfuil tú in ann seirbhísí Onion eile a "
-"rochtain trí cheangal a bhunú le <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">Seirbhís Onion DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4006,7 +3926,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5510,12 +5430,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Mar shampla, is é <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a> an"
-" onion i gcomhair DuckDuckGo."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5551,22 +5468,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Le seirbhísí Onion is féidir comhrá a dhéanamh agus comhaid a chomhroinnt "
-"gan meiteashonraí; éascaíonn siad cumarsáid idir iriseoirí agus a gcuid "
-"foinsí eolais trí sheirbhísí ar nós <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> nó <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>; ligeann siad duit "
-"bogearraí a nuashonrú go sábháilte; agus soláthraíonn siad bealach níos "
-"sábháilte le cuairt a thabhairt ar shuímh mór-le-rá ar nós <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5588,8 +5496,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Oinniún beag\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5600,12 +5508,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Oinniún glas "
-"le glas fraincín\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5763,8 +5667,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5994,7 +5898,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6263,7 +6167,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6839,9 +6743,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7779,16 +7684,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Chomh maith leis sin, le níos mó ná 3 nód bíonn sé níos éasca ionsaithe "
-"<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">diúltú "
-"slándála</a></mark> a dhéanamh, agus nochtann sé eolas fútsa mura bhfuil "
-"mórán daoine ag baint úsáid as an líon céanna nód."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -7890,12 +7790,9 @@ msgstr "Go raibh maith agat as tacú le Tor!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-" Tá tuilleadh eolais ar fáil ar an leathanach seo: <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">Ceisteanna Coitianta do "
-"dheontóirí</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -7953,17 +7850,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Féach <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">liosta ár gcuid "
-"urraitheoirí</a></mark> chomh maith le sraith <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">postálacha "
-"blag</a></mark> maidir lenár dtuarascálacha airgeadais."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7994,13 +7885,9 @@ msgstr "Ní mholaimid duit Tor a úsáid le BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Chun tuilleadh eolais a fháil, féach ar <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">phostáil bhlag</a></mark> a bhaineann leis an ábhar seo."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8077,12 +7964,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Ní dhéanaimid ach tomhas rialta ar fheidhmiú an líonra, agus tá na "
-"huimhreacha sin ar fáil ar <mark><a "
-"href=\"https://metrics.torproject.org/\">Meadaracht Tor</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8101,13 +7984,9 @@ msgstr "Ní chuirimid aon seirbhísí ar líne ar fáil."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Gheobhaidh tú liosta dár dtionscadail ar fad ar <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">an leathanach"
-" seo</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+gu.po b/contents+gu.po
index 694d2ff0d..8ffccaba0 100644
--- a/contents+gu.po
+++ b/contents+gu.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Gujarati (https://www.transifex.com/otf/teams/1519/gu/)\n"
@@ -276,10 +276,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -348,9 +348,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -933,8 +932,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1139,14 +1138,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1159,7 +1158,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1294,9 +1293,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1475,9 +1473,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1576,9 +1573,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1656,11 +1652,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1779,17 +1774,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1799,9 +1793,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1811,8 +1803,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1822,9 +1814,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1835,8 +1825,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1913,9 +1903,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1953,9 +1941,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2046,9 +2032,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2230,9 +2215,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2248,10 +2232,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2289,9 +2272,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2305,10 +2287,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2502,7 +2484,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2513,7 +2495,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3478,8 +3460,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3606,7 +3587,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5082,8 +5063,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5114,12 +5095,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5139,7 +5120,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5151,9 +5132,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5312,8 +5291,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5543,7 +5522,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5812,7 +5791,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6388,9 +6367,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7315,11 +7295,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7419,8 +7398,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7467,11 +7446,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7501,9 +7479,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7564,8 +7541,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7583,9 +7559,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+he.po b/contents+he.po
index 96aa50880..47ad7b272 100644
--- a/contents+he.po
+++ b/contents+he.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: ION, 2019\n"
"Language-Team: Hebrew (https://www.transifex.com/otf/teams/1519/he/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1297,9 +1296,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1482,9 +1480,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1583,9 +1580,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1663,11 +1659,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1790,17 +1785,16 @@ msgstr "איזה מנוע חיפוש מגיע עם דפדפן Tor ואיך הו
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1810,12 +1804,8 @@ msgstr "יש לי בעיה עם DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"אנא ראה את <mark><a href=\"https://duck.co/help\">פורטל התמיכה של "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1824,8 +1814,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1835,12 +1825,8 @@ msgstr "יש לי בעיה עם NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"אנא ראה את <mark><a href=\"https://noscript.net/faq\">שאלות נפוצות של "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1850,11 +1836,9 @@ msgstr "יש לי בעיה עם HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"אנא ראה את <mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS "
-"Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -1936,12 +1920,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1978,12 +1958,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2075,9 +2051,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2259,12 +2234,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\">למד"
-" עוד אודות העיצוב של דפדפן Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2279,10 +2251,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2320,9 +2291,8 @@ msgstr "למה דפדפן Tor שלי אומר משהו על כך ש־Firefox א
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2336,10 +2306,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2533,7 +2503,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2544,7 +2514,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3518,8 +3488,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3646,7 +3615,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5122,11 +5091,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"לדוגמה, הבצל של DuckDuckGo הוא <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5156,12 +5123,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5181,8 +5148,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5193,12 +5160,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5356,8 +5319,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5587,8 +5550,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### יישום"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -5856,7 +5819,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6432,9 +6395,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7359,11 +7323,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7463,8 +7426,8 @@ msgstr "תודה לך על תמיכתך!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7511,11 +7474,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7545,9 +7507,8 @@ msgstr "אנחנו לא ממליצים להשתמש ב־Tor עם BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7608,8 +7569,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7627,9 +7587,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+hi.po b/contents+hi.po
index 0585dbb51..1deb6ccc4 100644
--- a/contents+hi.po
+++ b/contents+hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Hindi (https://www.transifex.com/otf/teams/1519/hi/)\n"
@@ -274,10 +274,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -346,9 +346,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -931,8 +930,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1137,14 +1136,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1157,7 +1156,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1292,9 +1291,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1473,9 +1471,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1574,9 +1571,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1654,11 +1650,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1777,17 +1772,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1797,9 +1791,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1809,8 +1801,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1820,9 +1812,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1833,8 +1823,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1911,9 +1901,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1951,9 +1939,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2044,9 +2030,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2228,9 +2213,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2246,10 +2230,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2287,9 +2270,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2303,10 +2285,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2500,7 +2482,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2511,7 +2493,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3476,8 +3458,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3604,7 +3585,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5080,8 +5061,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5112,12 +5093,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5137,7 +5118,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5149,9 +5130,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5310,8 +5289,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5541,7 +5520,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5810,7 +5789,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6386,9 +6365,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7313,11 +7293,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7417,8 +7396,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7465,11 +7444,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7499,9 +7477,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7562,8 +7539,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7581,9 +7557,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+hu.po b/contents+hu.po
index c412c80ca..a12f11ba7 100644
--- a/contents+hu.po
+++ b/contents+hu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: István Dávid <istvandavid(a)icloud.com>, 2019\n"
"Language-Team: Hungarian (https://www.transifex.com/otf/teams/1519/hu/)\n"
@@ -286,10 +286,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -358,9 +358,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -943,8 +942,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1149,14 +1148,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1169,7 +1168,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1305,9 +1304,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1486,9 +1484,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1588,9 +1585,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1668,11 +1664,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1794,17 +1789,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1814,9 +1808,7 @@ msgstr "Problémám van a DuckDuckGo-val."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1826,8 +1818,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1837,9 +1829,7 @@ msgstr "Problémám van a NoScripttel."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1850,8 +1840,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1928,12 +1918,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1970,12 +1956,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2065,9 +2047,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2249,9 +2230,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2267,10 +2247,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2308,9 +2287,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2324,10 +2302,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2521,7 +2499,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2532,7 +2510,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3529,8 +3507,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3657,7 +3634,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5135,8 +5112,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5167,12 +5144,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5192,8 +5169,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5204,12 +5181,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5367,8 +5340,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5598,7 +5571,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5867,7 +5840,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6443,9 +6416,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7370,11 +7344,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7474,8 +7447,8 @@ msgstr "Köszönjük a támogatását!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7522,11 +7495,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7556,9 +7528,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7619,8 +7590,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7638,9 +7608,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+id.po b/contents+id.po
index 1e7efa1e1..80ee33caa 100644
--- a/contents+id.po
+++ b/contents+id.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Indonesian (https://www.transifex.com/otf/teams/1519/id/)\n"
@@ -298,15 +298,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser sudah terpasang dua add-on — <mark><a href=\"https://www.eff.org"
-"/https-everywhere\">HTTPS Everywhere</a></mark> dan <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> — menambahkan add-on lain"
-" akan merusak anomimisitas Anda. </p>"
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -377,13 +373,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Silakan cari tahu lebih tentang menggabungkan Tor + VPN di <mark><a "
-"href=\\\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\\\">wiki"
-" kami</a></mark>.</p>"
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -965,8 +957,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1172,20 +1164,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1196,11 +1184,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1344,13 +1330,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Jika masalah Anda tidak terdaftar, silahkan mengajukan <mark><a "
-"href=\"https://trac.torproject.org\">laporan bug</a></mark> tentang apa yang"
-" Anda alami."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1554,14 +1536,9 @@ msgstr "Mereka perlu secara terpisah dikonfigurasi untuk menggunakan Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Jika Anda perlu untuk memastikan bahwa semua lalu lintas akan masuk melalui "
-"jaringan Tor, lihatlah <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> yang dapat Anda gunakan di hampir semua komputer"
-" dengan menggunakan USB stick atau DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1673,13 +1650,9 @@ msgstr "Maaf, saat ini tidak ada dukungan resmi Tor Browser untuk *BSD."
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Ada proyek bernama <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, tapi Tor Browser versi "
-"mereka tidak secara resmi didukung."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1774,17 +1747,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Untuk selengkapnya tentang cara relay penjaga bekerja, melihat ini <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">posting blog</a></mark> dan <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">kertas</a></mark> pada entri "
-"penjaga."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1920,24 +1887,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark>adalah mesin "
-"pencari utama di Tor Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo tidak melacak penggunanya juga tidak menyimpan data tentang "
-"pencarian yang dilakukan pengguna. Pelajari lebih lanjut tentang <mark><a "
-"href=\"https://duckduckgo.com/privacy\">kebijakan privasi "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1946,12 +1906,8 @@ msgstr "Saya mendapatkan masalah dalam menggunakan DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Silakan lihat <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1960,12 +1916,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Jika Anda yakin ini adalah masalah Tor Browser, silakan melaporkannya kepada"
-" kami di <mark><a href=\"https://trac.torproject.org/\">pelacak "
-"bug</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1974,12 +1927,8 @@ msgstr "Saya mendapatkan masalah dalam menggunakan NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Silakan lihat <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1989,11 +1938,9 @@ msgstr "Saya mendapatkan masalah dalam menggunakan HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Silakan lihat <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2082,9 +2029,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -2131,12 +2076,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2248,13 +2189,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Jika Anda ingin menjadi sebuah relay, silakan lihat <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">panduan"
-" Tor Relay </a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2469,13 +2406,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark> <a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Pelajari "
-"lebih lanjut tentang desain Tor Browser</a> </mark> ."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2491,14 +2424,10 @@ msgstr "Di Tor Browser, setiap domain baru mendapatkan sirkuitnya sendiri."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark> <a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Pelajari "
-"lebih lanjut tentang desain Tor Browser</a> </mark> ."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2544,13 +2473,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser dibangun menggunakan <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, sehingga kelemahan "
-"Firefox dapat terjadi di Tor Browser."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2565,15 +2490,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Jika Anda menjalankan anti virus, silakan lihat <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">perlindungan antivirus "
-"malware yang menghalangi saya mengakses Tor Browser</a></mark>, itu biasa "
-"kalau antivirus/anti-malware menyebabkan jenis masalah ini."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2766,7 +2687,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2777,7 +2698,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3861,12 +3782,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Anda juga bisa memastikan bahwa Anda dapat mengakes layanan onion lain "
-"dengan tersambung ke <link "
-"href=\"http://3g2upl4pq6kufc4m.onion/\">DuckDuckGo's Onion Service</link>"
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4015,7 +3932,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5519,11 +5436,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Contohnya, situs onion dari DuckDuckGo adalah <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5558,20 +5473,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Layanan Onion juga diandalkan untuk layanan percakapan dan berbagi berkas "
-"bebas-metadata, interaksi yang aman antar jurnalis dengan sumber-sumbernya "
-"seperti dengan <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark>atau<mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, pembaruan perangkat "
-"lunak yang lebih aman, dan cara yang lebih aman untuk mencapai situs web "
-"populer seperti <mark></a>Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5594,7 +5502,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5606,12 +5514,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5772,8 +5676,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6003,7 +5907,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6272,7 +6176,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6848,9 +6752,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7793,18 +7698,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Selain itu, menggunakan jalur yang lebih panjang dari 3 dapat membahayakan "
-"anonimitas, pertama karena itu membuat serangan<mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">penolakan "
-"keamanan</a></mark> lebih mudah, dan kedua karena itu dapat bertindak "
-"sebagai suatu identifier jika hanya sejumlah kecil pengguna memiliki jalan "
-"panjang yang sama seperti Anda."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -7905,11 +7803,9 @@ msgstr "Terima kasih atas dukungan Anda!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Anda dapat menemukan lebih banyak info tentang sumbangan di <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQe</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -7970,17 +7866,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Silakan lihat semua <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\"> sponsors "
-"kami</a></mark> dan beberapa <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">posting "
-"blog</a></mark>tentang laporan keuangan kami."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8011,13 +7901,9 @@ msgstr "Kami tidak menyarankan penggunaan Tor dengan BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Untuk penjelasan lebih lanjut, silakan baca <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">posting blog tentang hal ini</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8094,12 +7980,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Kami melakukan beberapa langkah aman dalam cara jaringan Tor berfungsi, yang"
-" dapat Anda baca di <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8119,13 +8001,9 @@ msgstr "Tidak, kami tidak menawarkan jasa online."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Daftar semua proyek perangkat lunak kami dapat ditemukan di <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">halaman "
-"proyek </a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+is.po b/contents+is.po
index 03784f6e9..a5a57482e 100644
--- a/contents+is.po
+++ b/contents+is.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>, 2019\n"
"Language-Team: Icelandic (https://www.transifex.com/otf/teams/1519/is/)\n"
@@ -295,16 +295,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor-vafrinn kemur með tvær viðbætur sem þegar er búið að setja upp — "
-"<mark><a href=\"https://www.eff.org/https-everywhere\">HTTPS-"
-"allstaðar</a></mark> og <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> — og ef þú bætir við "
-"einhverju öðru er alltaf mögulegt að þú skemmir gagnaleynd þína."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -375,13 +370,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Þú getur fundið nánari upplýsingar um Tor + VPN á <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">wiki-"
-"síðunum okkar</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -974,8 +965,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1193,14 +1184,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1213,7 +1204,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1355,13 +1346,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Ef vandamálið þitt er ekki á listanum, skaltu endilega senda inn <mark><a "
-"href=\"https://trac.torproject.org\">villuskýrslu</a></mark> með lýsingu á "
-"því sem þú átt við að stríða."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1566,14 +1553,9 @@ msgstr "Það þyrfti að setja þau upp sérstaklega til að þau noti Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Ef þú vilt tryggja að öll netumferð fari í gegnum Tor-netkerfið, ættirðu að "
-"skoða <mark><a href=\"https://tails.boum.org/\">Tails "
-"keyrslustýrikerfið</a></mark> (live operating system) sem hægt er að ræsa á "
-"næstum öllum tölvum af USB-minnislykli eða DVD-diski."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1685,13 +1667,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Það er til eitthvað sem kallast <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD verkefnið</a></mark>, en Tor-vafrinn"
-" þeirra er ekki opinberlega studdur."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1786,18 +1764,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Til að fá frekari upplýsingar um hvernig varðendurvarpar virka, skaltu skoða"
-" þessa <mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">bloggfærslu</a></mark> og þessa <mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">grein</a></mark> um dyraverði "
-"(entry guard)."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1934,24 +1905,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> er "
-"sjálfgefin leitarvél í Tor-vafranum."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo rekur hvorki ferðir notenda sinna né geymir nein gögn um leitir "
-"sem þeir framkvæma. Lærðu meira um <mark><a "
-"href=\"https://duckduckgo.com/privacy\">persónuverndarstefnu "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1960,12 +1924,8 @@ msgstr "Ég á við vandamál að stríða með DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Skoðaðu <mark><a href=\"https://duck.co/help\">aðstoðargátt "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1974,12 +1934,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Ef þú heldur að vandamálið sé í Tor-vafranum, skaltu endilega tilkynna um "
-"það í <mark><a "
-"href=\"https://trac.torproject.org/\">villuskrásetjaranum</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1988,12 +1945,8 @@ msgstr "Ég á við vandamál að stríða með NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Skoðaðu <mark><a href=\"https://noscript.net/faq\">Algengar spurningar fyrir"
-" NoScript - FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2003,11 +1956,9 @@ msgstr "Ég á við vandamál að stríða með HTTPS-allsstaðar."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Skoðaðu <mark><a href=\"https://www.eff.org/https-everywhere/faq\">Algengar "
-"spurningar fyrir HTTPS-allsstaðar</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2098,12 +2049,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Valmynd "
-"Tor-vafrans\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2150,12 +2097,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Ný rás "
-"fyrir þetta vefsvæði\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2267,13 +2210,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Ef þú hefur áhuga að að setja upp endurvarpa, ættirðu að skoða <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Leiðbeiningar"
-" fyrir Tor-endurvarpa</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2487,13 +2426,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Lærðu meira "
-"um hönnun Tor-vafrans</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2508,15 +2443,10 @@ msgstr "Í Tor-vafranum fær hvert lén sína eigin rás."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Skjalið <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">The Design and Implementation of Tor Browser</a></mark> "
-"útskýrir betur hugsunina á bakvið þessa hönnun."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2562,13 +2492,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor-vafrinn er byggður upp úr <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, þannig að gallar sem "
-"varða Firefox geta komið upp."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2584,16 +2510,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Ef þú ert að keyra vírusvarnarforrit, skoðaðu <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Vírusvarnarforritið eða "
-"spilliforritavörnin mín kemur í veg fyrir að ég geti notað Tor-vafrann "
-"minn.</a></mark>, það er nokkuð algengt að vírusvarnarforrit eða "
-"spilliforritavarnir valdi slíkum vandamálum."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2786,7 +2707,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2797,7 +2718,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3899,12 +3820,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Þú getur gengið úr skugga um hvort hægt sé að ná sambandi við aðrar onion-"
-"þjónustur með því að tengjast við <a "
-"href=\"http://3g2upl4pq6kufc4m</a>.onion/\">onion-þjónustu DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4056,7 +3973,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5561,11 +5478,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Til dæmis er onion-svæði DuckDuckGo á <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5600,21 +5515,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Fólk reiðir sig á onion-þjónustur við skráaskipti og á spjallsvæðum sem ekki"
-" safna lýsigögnum, við öruggari samskipti milli blaðamanna og heimildamanna "
-"með <mark><a href=\"https://securedrop.org/\">SecureDrop</a></mark> eða "
-"<mark><a href=\"https://onionshare.org/\">OnionShare</a></mark>, fyrir "
-"öruggari uppfærslur hugbúnaðar, auk öruggari leiða til að fara inn á vinsæl "
-"vefsvæði á borð við <mark><a href=\"https://www.facebook.com/notes/protect-"
-"the-graph/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5639,10 +5546,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion eða "
-"lauk-táknmyndin\">"
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5655,12 +5560,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Grænn laukur "
-"með hengilás\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5821,8 +5722,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6064,8 +5965,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### Forrit, vefforrit (app)"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6390,8 +6291,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### miðlaraferli, púki, bakgrunnsþjónusta (daemon)"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7096,13 +6997,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI stendur fyrir \"Open Observatory of Network Interference\", það er "
-"alþjóðlegt vöktunarkerfi til að finna merki um [ritskoðun](#network-"
-"censorship), eftirlit og íhlutun í [netumferð](#traffic) á internetinu."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8201,17 +8100,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Að auki gæti notkun á slóðum sem eru lengri en 3 hopp skert gagnaleynd; í "
-"fyrsta lagi af því það getur auðveldað <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial of "
-"security</a></mark> árásir, og í öðru lagi gæti það verið notað til að "
-"auðkenna þig ef aðeins örfáir notendur nota sama fjölda hoppa og þú."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8312,12 +8205,9 @@ msgstr "Þakka þér fyrir stuðninginn!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Þú getur fundið nánari upplýsingar um fjárframlög og styrki á <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">síðunni með algengum "
-"spurningum styrktaraðila</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8379,17 +8269,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Þú getur skoðað lista yfir alla <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">stuðningsaðila "
-"okkar</a></mark> ásamt röð af <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">bloggfærslum</a></mark>"
-" sem fjalla um ársreikningana okkar."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8423,13 +8307,9 @@ msgstr "Við mælum ekki með því að Tor sé notað með BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Til að skoða þetta nánar, kíktu þá á <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">bloggpóstinn okkar um þetta mál</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8507,12 +8387,8 @@ msgstr "Tor heldur ekki neinar atvikaskrár varðandi einstaka notendur."
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Við gerum ýmsar öruggar mælingar á því hvernig netkerfið virkar, sem þú "
-"getur skoðað á síðunni um <mark><a "
-"href=\"https://metrics.torproject.org/\">tölfræði Tor</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8531,13 +8407,9 @@ msgstr "Nei, við bjóðum ekki upp á neinar hýsingarþjónustur."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Lista yfir allan hugbúnað sem við vinnum að má finna á <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">verkefnasíðunni"
-" okkar</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+it.po b/contents+it.po
index 424d27f38..7d11a892f 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -1,27 +1,27 @@
# Translators:
# SebastianoPistore <SebastianoPistore.info(a)protonmail.ch>, 2019
-# Giuseppe Curto <giuseppe.curto(a)gmail.com>, 2019
# Kravenor <baldelli.simone(a)gmail.com>, 2019
# VaiTon <eyadlorenzo(a)gmail.com>, 2019
# francesco ercolani <erco99(a)live.it>, 2019
# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2019
# Hiro 7 <hiro(a)torproject.org>, 2019
# fabio carletti <fabiocarlettiryuw(a)gmail.com>, 2019
-# Davide Sant <spuuu(a)outlook.it>, 2019
# Gabriele <gabboxl0(a)gmail.com>, 2019
# Random_R, 2019
# Fabio Ottone, 2019
# mattia_b89 <mattia.b89(a)gmail.com>, 2019
# erinm, 2019
# Emma Peel, 2019
+# Giuseppe Curto <giuseppe.curto(a)gmail.com>, 2019
+# Davide Sant <spuuu(a)outlook.it>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: Emma Peel, 2019\n"
+"Last-Translator: Davide Sant <spuuu(a)outlook.it>, 2019\n"
"Language-Team: Italian (https://www.transifex.com/otf/teams/1519/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -308,15 +308,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser include già due componenti aggiuntivi — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> e "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — e aggiungere "
-"qualsiasi altra cosa potrebbe deanonimizzarti."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -387,13 +383,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Puoi trovare informazioni più dettaglaite riguardo a Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -988,8 +980,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1224,20 +1216,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1248,11 +1236,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1396,13 +1382,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Se il tuo problema non è listato, gentilmente riporta su <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> il problema che "
-"hai riscontrato."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1604,14 +1586,9 @@ msgstr "Devono essere configurate separatamente per poter usare Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Se devi essere sicuro che tutto il traffico passerà attraverso la rete Tor, "
-"dai un'occhiata al <mark><a href=\"https://tails.boum.org/\">tails live "
-"operating system</a></mark>che puoi avviare su quasi tutti i computer da una"
-" chiavetta USB o da un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1726,12 +1703,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"C'è qualcosa chiamato <mark><a href=\"https://www.torbsd.org/\">TorBSD "
-"project</a></mark>, ma il loro Tor Browser non è supportato ufficialmente."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1824,17 +1798,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Per maggiori informazioni su come funzionano le guard relay, consulta questo"
-" <mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">post del blog</a></mark> e <mark><a href=\"https"
-"://www-users.cs.umn.edu/~hoppernj/single_guard.pdf\">questo "
-"saggio</a></mark> sulle entry guard."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1972,24 +1940,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> è il motore "
-"di ricerca predefinito in Tor Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo non traccia i suoi utenti e non raccoglie alcun dato sulle "
-"ricerche. Maggiori informazioni sulla <mark><a "
-"href=\"https://duckduckgo.com/privacy\">politica sulla privacy di "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1998,12 +1959,8 @@ msgstr "Sto avendo un problema con DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Per favore consulta il <mark><a href=\"https://duck.co/help\">portale di "
-"supporto di DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2012,11 +1969,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Se pensi sia un problema di Tor Browser, per favore segnalalo nel nostro "
-"<mark><a href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2025,12 +1980,8 @@ msgstr "Sto avendo un problema con NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Per favore consulta la <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>. "
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2040,11 +1991,9 @@ msgstr "Sto avendo un problema con HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Per favore consulta la <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>. "
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2134,12 +2083,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2186,12 +2131,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2304,13 +2245,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Se desideri diventare un relay, puoi consultare la nostra <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guida "
-"ai Tor Relay</a></mark>. "
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2524,13 +2461,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Scopri di "
-"più riguardo alla progettazione di Tor Browser</a></mark>. "
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2545,15 +2478,10 @@ msgstr "In Tor Browser, ogni nuovo dominio ottiene il proprio circuito."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">La progettazione e l'implementazione di Tor "
-"Browser</a></mark> questo documento spiega in dettaglio la filosofia dietro "
-"a questa idea."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2600,13 +2528,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser è realizzato utilizzando <mark><a href=\"https://www.mozilla.org"
-"/en-US/firefox/organizations/\">Firefox ESR</a></mark>, quindi è possibile "
-"che si verifichino errori che riugardano Firefox. "
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2622,16 +2546,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Se state utilizzando un antivirus, guardate la sezione <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">La protezione del mio "
-"antivirus/antimalware mi sta impedendo di accedere a Tor Browser</a></mark>,"
-" è abbastanza comune che questo tipo di problema si verifichi con i software"
-" antivirus/antimalware."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2824,7 +2743,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2835,7 +2754,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3943,12 +3862,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Puoi inoltre assicurarti di essere in grado di accedere ad altri servizi "
-"onion connettendoti al <a href=\"http://3g2upl4pq6kufc4m.onion\">servizio "
-"onion di DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4096,7 +4011,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5599,11 +5514,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Ad esempio, il sito onion di DuckDuckGo è <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>. "
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5638,21 +5551,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"I servizi Onion sono affidabili anche per la chat e la condivisione di file "
-"senza metadati, un'interazione più sicura tra i giornalisti e le loro fonti "
-"come con <mark><a href=\"https://securedrop.org/\">SecureDrop</a></mark> o "
-"<mark><a href=\"https://onionshare.org/\">OnionShare</a></mark>, "
-"aggiornamenti software più sicuri e modi più sicuri per visitare siti famosi"
-" come <mark><a href=\"https://www.facebook.com/notes/protect-the-graph"
-"/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5674,8 +5579,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5686,12 +5591,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5852,8 +5753,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6097,8 +5998,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### Applicazione"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6414,8 +6315,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Demone"
+msgid "### daemon"
+msgstr "### daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7110,13 +7011,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI sta per \"Open Observatory of Network Interference\", è una rete di "
-"osservazione globale per rilevare la [censura](#network-censorship), la "
-"sorveglianza e la manipolazione del [traffico](#traffic) in internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8122,18 +8021,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"In più, utilizzare percorsi più lunghi di 3 potrebbe compromettere "
-"l'anonimia, in primo luogo perché rende gli attacchi <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial of "
-"security</a></mark> più semplici, e in secondo luogo perché potrebbe essere "
-"utilizzato come un indicatore, un segno distintivo, se poche persone "
-"utilizzano la stessa lunghezza di percorso come la tua."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8234,12 +8126,9 @@ msgstr "Grazie per il vostro supporto!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Puoi trovare maggiori informazioni per le donazioni nella nostra <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">FAQ per i "
-"donatori</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8299,17 +8188,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Controlla la lista di tutti <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">i nostri "
-"sponsor</a></mark> e la serie di <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">post sul "
-"blog</a></mark> relativi ai report sui nostri finanziamenti. "
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8340,13 +8223,9 @@ msgstr "Sconsigliamo di usare Tor con BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Per maggiori dettagli, per favore consulta il nostro <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">post"
-" sul blog relativo a questo argomento</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8424,12 +8303,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Noi rileviamo in sicurezza alcune misurazioni relative al funzionamento del "
-"network, puoi controllarle da <mark><a "
-"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8448,14 +8323,9 @@ msgstr "No, non forniamo servizi online."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Un elenco di tutti i nostri progetti software può essere reperita sulla "
-"nostra <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">pagina dei "
-"progetti</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+ja.po b/contents+ja.po
index 1f4326a2b..caf639c4a 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1297,9 +1296,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1478,9 +1476,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1581,9 +1578,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1661,11 +1657,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1784,17 +1779,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1804,9 +1798,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1816,8 +1808,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1827,9 +1819,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1840,8 +1830,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1918,9 +1908,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1958,9 +1946,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2051,9 +2037,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2235,9 +2220,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2253,10 +2237,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2295,9 +2278,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2311,10 +2293,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2508,7 +2490,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2519,7 +2501,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3485,8 +3467,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3613,7 +3594,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5089,8 +5070,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5121,12 +5102,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5146,7 +5127,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5158,9 +5139,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5321,8 +5300,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5554,7 +5533,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5823,7 +5802,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6399,9 +6378,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7326,11 +7306,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7430,8 +7409,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7478,11 +7457,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7512,9 +7490,8 @@ msgstr "Torを介してBittorrentの利用するのは奨励されない。"
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7575,8 +7552,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7594,9 +7570,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+ka.po b/contents+ka.po
index 45dc21bda..d491b5e30 100644
--- a/contents+ka.po
+++ b/contents+ka.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Georgianization, 2019\n"
"Language-Team: Georgian (https://www.transifex.com/otf/teams/1519/ka/)\n"
@@ -317,15 +317,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor-ბრაუზერს ისედაც მოყვება თან საჭირო დამატებები — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> და"
-" <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — სხვა რამის "
-"დამატებამ კი შესაძლოა გაამჟღავნოს თქვენი ვინაობა."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -412,13 +408,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"დამატებით, Tor-ის VPN-თან გამოყენების შესახებ, შეგიძლიათ იხილოთ ჩვენს "
-"<mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">ვიკიში</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1133,11 +1125,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
-"მაგალითად, „torbrowser-install-win64-9.0_en-US.exe“ ფაილს თან ახლავს ფაილი "
-"„torbrowser-install-win64-9.0_en-US.exe.asc“."
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1375,20 +1365,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1401,11 +1387,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1576,13 +1560,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"თუ არაფერია აღნიშნული მოცემულ ხარვეზზე, გთხოვთ <mark><a "
-"href=\"https://trac.torproject.org\">ვრცლად მოგვახსენოთ,</a></mark> რა "
-"სირთულეს გადააწყდით."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1787,14 +1767,9 @@ msgstr "მათი გამართვა ცალკეა საჭირ
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"თუ გსურთ ყველა სახის ინფორმაციის მიმოცვლა ხდებოდეს Tor-ქსელის გავლით, "
-"გაეცანით <mark><a href=\"https://tails.boum.org/\">Tails-ის პირდაპირ "
-"გასაშვებ სისტემას</a></mark>, რომელიც ნებისმიერ კომპიუტერზე შეგიძლიათ "
-"პირდაპირ გაუშვათ USB-მეხსიერებიდან ან DVD-დისკიდან."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1913,13 +1888,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"არსებობს პროექტი სახელწოდებით <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, მაგრამ Tor-ბრაუზერი არაა"
-" ოფიციალურად მხარდაჭერილი."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -2012,17 +1983,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"ვრცლად, მცველი გადამცემების მუშაობის შესახებ, იხილეთ <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">სტატია სვეტზე</a></mark> და <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">მასალა</a></mark> შემავალი "
-"მცველების თაობაზე."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2175,24 +2140,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> არის "
-"ნაგულისხმევი საძიებო სისტემა Tor-ბრაუზერში."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo არ აღრიცხავს მისი მომხმარებლების მოქმედებებს და არ ინახავს "
-"არანაირ მონაცემებს ძიების შესახებ. ვრცლად, იხილეთ <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo-ს პირადი მონაცემების "
-"დაცვის დებულება</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2201,12 +2159,8 @@ msgstr "ხარვეზს გადავაწყდი DuckDuckGo-სთ
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"გთხოვთ, იხილოთ <mark><a href=\"https://duck.co/help\">DuckDuckGo-ს "
-"მხარდაჭერის გვერდი</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2215,12 +2169,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"თუ თვლით, რომ ეს ხარვეზი Tor-ბრაუზერს უკავშირდება, გთხოვთ მოგვახსენოთ ჩვენს "
-"<mark><a href=\"https://trac.torproject.org/\">ხარვეზების "
-"აღმნუსხავში</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2229,12 +2180,8 @@ msgstr "ხარვეზს გადავაწყდი NoScript-თან
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"გთხოვთ, იხილოთ <mark><a href=\"https://noscript.net/faq\">NoScript-ის "
-"ხ.დ.კ</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2244,11 +2191,9 @@ msgstr "ხარვეზს გადავაწყდი HTTPS Everywhere-
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"გთხოვთ, იხილოთ <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere-ის ხ.დ.კ</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2342,12 +2287,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2393,12 +2334,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2512,13 +2449,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"თუ სურვილი გაქვთ გახდეთ გადამცემი, გთხოვთ იხილოთ ჩვენი <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor-"
-"გადამცემის სახელმძღვანელო</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2752,13 +2685,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">იხილეთ "
-"ვრცლად, Tor-ბრაუზერის შემუშავების შესახებ</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2773,14 +2702,10 @@ msgstr "Tor-ბრაუზერში, ყოველი ახალი მ
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">Tor-ბრაუზერის შემუშავებისა და "
-"გამოშვების</a></mark> მასალებში უკეთაა ახსნილი, მისი მუშაობის პრინციპი."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2825,13 +2750,9 @@ msgstr "Tor-ბრაუზერი რატომ წერს შეცდ
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor-ბრაუზერი დაფუძნებულია <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR-ზე</a></mark>, ასე რომ, შესაძლოა "
-"ადგილი ჰქონდეს Firefox-სთან დაკავშირებულ შეცდომებს."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2846,16 +2767,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"თუ ანტივირუსული პროგრამა გაქვთ გაშვებული, გთხოვთ იხილოთ <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">ჩემი ანტივირუსული/მავნე "
-"პროგრამებისგან დასაცავი საშუალება ხელს მიშლის Tor-ბრაუზერთან "
-"წვდომაში</a></mark>, ხშირია შემთხვევები, როცა ანტივირუსული/მავნე "
-"პროგრამებისგან დასაცავი საშუალებები მსგავს ხარვეზებს იწვევს."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -3110,37 +3026,22 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
"doing CONNECT requests to get to Tor relays. (It's fine if they're the same "
"proxy.) Tor also recognizes the torrc options Socks4Proxy and Socks5Proxy."
msgstr ""
-"შეგიძლიათ გამართოთ პროქსის IP-მისამართი, პორტი და შესვლის მონაცემები [Tor-"
-"ბრაუზერის ქსელის პარამეტრებიდან](https://tb-manual.torproject.org/running-"
-"tor-browser/). თუ სხვა გზით იყენებთ Tor-ს, გადახედეთ HTTPProxy და HTTPSProxy"
-" კონფიგურაციის პარამეტრებს "
-"[სახელმძღვანელოში](https://2019.www.torproject.org/docs/tor-manual.html.en),"
-" შემდეგ კი ჩაასწორეთ თქვენი torrc ფაილი შესაბამისად. დაგჭირდებათ HTTP-პროქსი"
-" GET-მოთხოვნებისთვის, Tor-სიასთან დასაკავშირებლად და ასევე HTTPS-პროქსი, "
-"CONNECT-მოთხოვნებისთვის, Tor-გადამცემების მისაღებად. (დასაშვებია, თუ ორივე "
-"ერთი პროქსი იქნება). Tor აგრეთვე ამოიცნობს torrc პარამეტრებს Socks4Proxy-სა "
-"და Socks5Proxy-ს."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
-"აგრეთვე, გადახედეთ HTTPProxyAuthenticator და HTTPSProxyAuthenticator "
-"პარამეტრებს, თუ თქვენი პროქსი საჭიროებს ანგარიშზე შესვლას. ჩვენთან, "
-"მხარდაჭერილია მხოლოდ მარტივი შესვლის შესაძლებლობა, მაგრამ თუ NTLM-დამოწმება "
-"გესაჭიროებათ, შეიძლება გამოგადგეთ [ეს პოსტი "
-"არქივიდან](http://archives.seul.org/or/talk/Jun-2005/msg00223.html)."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
@@ -4333,12 +4234,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"ამასთან, Onion-მომსახურებებთან წვდომის შესაძლებლობა შეგიძლიათ გადაამოწმოთ <a"
-" href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo</a>-ს Onion-"
-"მომსახურებასთან დაკავშირების მეშვეობით."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4504,10 +4401,8 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
-"ვრცლად, [HTTPS-ის თაობაზე იხილავთ აქ](https://tb-manual.torproject.org"
-"/secure-connections/)"
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -6392,11 +6287,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"მაგალითად, DuckDuckGo-ს შესაბამისი onion არის <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -6430,22 +6323,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Onion-მომსახურებები ასევე გამოსადეგია მონაცემების დართვისგან თავისუფალი "
-"მიმოწერებისა და ფაილების გაზიარებისთვის, მეტად უსაფრთხო ურთიერთობისთვის "
-"ჟურნალისტებსა და მათ წყაროებს შორის, ასეთია <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> ან <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, დაცული პროგრამული "
-"განახლებები და კიდევ უფრო მეტად უსაფრთხო საშუალებები, ისეთ ცნობილ საიტებთან "
-"წვდომისთვის, როგორიცაა <mark><a href=\"https://www.facebook.com/notes"
-"/protect-the-graph/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6469,8 +6353,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6483,12 +6367,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6670,14 +6550,9 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
-"შეგიძლიათ გახსნათ ბილეთი დასახმარებლად მისამართზე "
-"[https://trac.torproject.org](https://trac.torproject.org). ჩვენ მივადევნებთ"
-" თვალს Tor-ბრაუზერის მე-8 ვერსიასთან დაკავშირებულ ყველა ხარვეზს საკვანძო "
-"სიტყვით ff60-esr. ბილეთები ჩვენს საიტთან დაკავშირებით, უნდა იყოს კომპონენტით"
-" „Webpages/Website“."
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -6964,8 +6839,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App (აპლიკაცია)"
+msgid "### app"
+msgstr "### აპლიკაცია (app)"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7309,8 +7184,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon (პროგრამა დემონი)"
+msgid "### daemon"
+msgstr "### daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8040,13 +7915,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI აღნიშნავს Open Observatory of Network Interference, მსოფლიო დაკვირვების"
-" ქსელი, რომლის მიზანიცაა ინტერნეტში [ცენზურის](#network-censorship), "
-"ზედამხედველობისა და [მონაცემთა მიმოცვლაზე](#traffic) ზემოქმედების აღმოჩენა."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -9183,19 +9056,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"პირიქით, 3-ზე მეტი კვანძისგან შემდგარმა ჯაჭვმა, შესაძლოა საფრთხეც შეუქმნას "
-"ვინაობის გაუმხელობას, ვინაიდან ჯერ ერთი რომ ამარტივებს <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">უსაფრთხოების "
-"მიუწვდომლობის (DoS)</a></mark> შეტევების შესაძლებლობას, მეორე კი იმიტომ, რომ"
-" შესაძლოა გამოყენებული იყოს თქვენს ამოსაცნობად, ვინაიდან ცოტა იქნება ისეთი "
-"მომხმარებელი, რომელიც ზუსტად თქვენნაირი რაოდენობის კვანძებისგან შემდგარ "
-"ჯაჭვს გამოიყენებს."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -9304,12 +9169,9 @@ msgstr "გმადლობთ თქვენი მხარდაჭერ
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"დამატებით, წვლილის შემოტანის შესახებ შეგიძლიათ იხილოთ ჩვენი <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">შემოწირულობის "
-"ხ.დ.კ</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -9367,17 +9229,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"იხილეთ ყველა <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">ჩვენი ფინანსური "
-"მხარდამჭერი</a></mark> და სტატიების სერია <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">სვეტზე</a></mark>"
-" ჩვენი ხარჯთაღრიცხვის მოხსენებებთან დაკავშირებით."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -9410,13 +9266,9 @@ msgstr "ჩვენ არ გირჩევთ Tor-ის გამოყე
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"ვრცლად, გთხოვთ გაეცნოთ ჩვენს <mark><a href=\"https://blog.torproject.org"
-"/bittorrent-over-tor-isnt-good-idea\">სვეტზე სტატიას მოცემულ "
-"თემაზე</a></mark>"
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -9494,12 +9346,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"ჩვენ ვაწარმოებთ გარკვეულ უსაფრთხო გაზომვებს იმის დასადგენად, თუ როგორ "
-"მუშაობს ქსელი, ამის შესახებ შეგიძლიათ იხილოთ <mark><a "
-"href=\"https://metrics.torproject.org/\">Tor-ის გაზომვები</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -9518,14 +9366,9 @@ msgstr "არა, ჩვენ არ გვაქვს არანაირ
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"ყველა ჩვენი პროგრამული პროექტების ჩამონათვალი შეგიძლიათ იხილოთ ჩვენს "
-"<mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">პროექტების "
-"გვერდზე</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+ko.po b/contents+ko.po
index aa9690ef9..9fbeb6598 100644
--- a/contents+ko.po
+++ b/contents+ko.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Korean (https://www.transifex.com/otf/teams/1519/ko/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1297,9 +1296,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1478,9 +1476,8 @@ msgstr "그들은 Tor을 사용하려면 별도로 구성하야 됩니다."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1581,9 +1578,8 @@ msgstr "죄송하지만 현재 Tor 브라우저는 *BSD에서 공식적으로
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1663,11 +1659,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1786,17 +1781,16 @@ msgstr "어떤 검색 엔진이 Tor 브라우저와 함께 제공되며 개인
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1806,9 +1800,7 @@ msgstr "DuckDuckGo에 문제가 있습니다."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1818,8 +1810,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1829,9 +1821,7 @@ msgstr "NoScript에 문제가 있습니다."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1842,8 +1832,8 @@ msgstr "HTTPS Everywhere에 문제가 있습니다."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1920,9 +1910,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1960,12 +1948,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2055,9 +2039,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2241,9 +2224,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2259,10 +2241,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2302,9 +2283,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2319,10 +2299,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2516,7 +2496,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2527,7 +2507,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3501,8 +3481,7 @@ msgstr "일시적인 연결 문제일 수도 있고 사이트 관리자는 경
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3629,7 +3608,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5107,8 +5086,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5139,12 +5118,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5164,7 +5143,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5176,12 +5155,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5339,8 +5314,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5570,7 +5545,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5839,7 +5814,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6415,9 +6390,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7342,11 +7318,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7446,8 +7421,8 @@ msgstr "당신의 도움에 감사드립니다!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7496,16 +7471,11 @@ msgstr "Tor는 미국 연방 정부 기관, 사설 재단 및 개인 기부자
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/about/sponsors.html.en\">저희 "
-"후원자들</a></mark>과 <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">블로그 "
-"포스트</a></mark>와 재무 보고서를 참조하십시오."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7534,12 +7504,9 @@ msgstr "Tor를 비트토렌트와 사용하는 것은 권장하지 않습니다.
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"자세한 내용은 <mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-"
-"isnt-good-idea\">이 주제에 관한 블로그 게시물</a></mark>을 참조하십시오."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -7599,8 +7566,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7618,9 +7584,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+mk.po b/contents+mk.po
index 0123f8ad3..ef928b4ed 100644
--- a/contents+mk.po
+++ b/contents+mk.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Liljana Ackovska <liljanagjurova(a)gmail.com>, 2019\n"
"Language-Team: Macedonian (https://www.transifex.com/otf/teams/1519/mk/)\n"
@@ -278,10 +278,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -350,9 +350,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -935,8 +934,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1141,14 +1140,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1161,7 +1160,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1296,9 +1295,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1477,9 +1475,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1578,9 +1575,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1658,11 +1654,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1781,17 +1776,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1801,9 +1795,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1813,8 +1805,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1824,9 +1816,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1837,8 +1827,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1915,9 +1905,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1955,12 +1943,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2050,9 +2034,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2234,9 +2217,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2252,10 +2234,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2293,9 +2274,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2309,10 +2289,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2506,7 +2486,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2517,7 +2497,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3482,8 +3462,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3610,7 +3589,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5086,8 +5065,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5118,12 +5097,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5143,7 +5122,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5155,9 +5134,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5316,8 +5293,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5547,7 +5524,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5816,7 +5793,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6392,9 +6369,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7324,11 +7302,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7428,8 +7405,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7476,11 +7453,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7510,9 +7486,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7573,8 +7548,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7592,9 +7566,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+ml.po b/contents+ml.po
index d289ce8a9..744c52eee 100644
--- a/contents+ml.po
+++ b/contents+ml.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Malayalam (https://www.transifex.com/otf/teams/1519/ml/)\n"
@@ -321,16 +321,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"ടോർ ബ്രൗസർ ഇതിനകം തന്നെ രണ്ട് ആഡ്-ഓണുകൾ ഉപയോഗിച്ച് ഇൻസ്റ്റാൾ ചെയ്തിട്ടുണ്ട് "
-"- <mark><a href=\"https://www.eff.org/https-everywhere\">എച്ച്ടിടിപിഎസ് "
-"എല്ലായിടത്തും </a></mark><mark><a "
-"href=\"https://noscript.net/\">നോസ്ക്രിപ്റ്റും </a></mark>- കൂടാതെ "
-"മറ്റെന്തെങ്കിലും ചേർക്കുന്നത് നിങ്ങളെ ഡീനോണിമൈസ് ചെയ്യും."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -416,13 +411,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"ടോർ + വിപിഎനെക്കുറിച്ചുള്ള കൂടുതൽ വിശദമായ വിവരങ്ങൾ <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">ഞങ്ങളുടെ"
-" വിക്കിയിൽ </a></mark>കണ്ടെത്താം."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1139,8 +1130,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1385,14 +1376,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1407,7 +1398,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1555,13 +1546,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"നിങ്ങളുടെ പ്രശ്നം ലിസ്റ്റുചെയ്തിട്ടില്ലെങ്കിൽ, നിങ്ങൾ "
-"അനുഭവിക്കുന്നതിനെക്കുറിച്ച് ഒരു <mark><a "
-"href=\"https://trac.torproject.org\">ബഗ് റിപ്പോർട്ട് </a></mark>ഫയൽ ചെയ്യുക."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1777,14 +1764,9 @@ msgstr "ടോർ ഉപയോഗിക്കുന്നതിന് അവ പ
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"എല്ലാ ട്രാഫിക്കും ടോർ നെറ്റ്വർക്കിലൂടെ കടന്നുപോകുമെന്ന് നിങ്ങൾക്ക് "
-"ഉറപ്പുണ്ടെങ്കിൽ, <mark><a href=\"https://tails.boum.org/\">ടെയിൽസ് ലൈവ് "
-"ഓപ്പറേറ്റിംഗ് സിസ്റ്റം </a>നോക്കുക, അത് യുഎസ്ബി സ്റ്റിക്കിൽ നിന്നോ ഡിവിഡിയിൽ"
-" നിന്നോ ഏത് കമ്പ്യൂട്ടറിലും ആരംഭിക്കാൻ കഴിയും."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1909,13 +1891,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"<mark><a href=\"https://www.torbsd.org/\">ടോർബിഎസ്ഡി പ്രോജക്റ്റ് "
-"</a></mark>എന്ന് വിളിക്കുന്ന ചിലത് ഉണ്ട്, എന്നാൽ അവരുടെ ടോർ ബ്രൗസർ "
-"ഔദ്യോഗികമായി പിന്തുണയ്ക്കുന്നില്ല."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -2012,17 +1990,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"ഗാർഡ് റിലേകൾ എങ്ങനെ പ്രവർത്തിക്കുന്നു എന്നതിനെക്കുറിച്ചുള്ള കൂടുതൽ "
-"വിവരങ്ങൾക്ക്, എൻട്രി ഗാർഡുകളിലെ ഈ <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">ബ്ലോഗ് പോസ്റ്റും </a></mark><mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">പേപ്പറും </a></mark>കാണുക."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2174,24 +2146,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"ടോർ ബ്രൗസറിലെ സ്ഥിരസ്ഥിതി തിരയൽ എഞ്ചിനാണ് <mark><a "
-"href=\"https://duckduckgo.com/\">ഡക്ക്ഡക്ക്ഗോ</a></mark>."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo അതിന്റെ ഉപയോക്താക്കളെ ട്രാക്കുചെയ്യുന്നില്ല അല്ലെങ്കിൽ ഉപയോക്തൃ "
-"തിരയലുകളെക്കുറിച്ചുള്ള ഒരു ഡാറ്റയും സംഭരിക്കുന്നില്ല. <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo സ്വകാര്യതാ "
-"നയത്തെക്കുറിച്ച് </a></mark>കൂടുതലറിയുക."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2200,12 +2165,8 @@ msgstr "എനിക്ക് ഡക്ക്ഡക്ക്ഗോയുമാ
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"<mark><a href=\"https://duck.co/help\">ഡക്ക്ഡക്ക്ഗോ പിന്തുണാ പോർട്ടൽ "
-"</a></mark>കാണുക."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2214,12 +2175,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"ഇതൊരു ടോർ ബ്രൗസർ പ്രശ്നമാണെന്ന് നിങ്ങൾ വിശ്വസിക്കുന്നുവെങ്കിൽ, ദയവായി ഇത് "
-"ഞങ്ങളുടെ <mark><a href=\"https://trac.torproject.org/\">ബഗ് ട്രാക്കറിൽ "
-"</a></mark>റിപ്പോർട്ടുചെയ്യുക."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2228,12 +2186,8 @@ msgstr "എനിക്ക് നോസ്ക്രിപ്റ്റിൽ ഒ
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"<mark><a href=\"https://noscript.net/faq\">നോസ്ക്രിപ്റ്റ് പതിവുചോദ്യങ്ങൾ "
-"</a></mark>കാണുക."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2243,11 +2197,9 @@ msgstr "എനിക്ക് HTTPS എല്ലായിടത്തും -
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"<mark><a href=\"https://www.eff.org/https-everywhere/faq\">എച്ച്ടിടിപിഎസ് "
-"എല്ലായിടത്തും പതിവുചോദ്യങ്ങൾ </a></mark>കാണുക."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2342,12 +2294,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2394,12 +2342,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2508,9 +2452,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2692,9 +2635,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2710,10 +2652,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2751,9 +2692,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2767,10 +2707,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2964,7 +2904,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2975,7 +2915,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3943,8 +3883,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -4071,7 +4010,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5547,8 +5486,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5579,12 +5518,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5604,7 +5543,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5616,9 +5555,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5777,8 +5714,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6008,7 +5945,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6277,7 +6214,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6853,9 +6790,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7780,11 +7718,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7884,8 +7821,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7932,11 +7869,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7966,9 +7902,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -8029,8 +7964,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -8048,9 +7982,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+my.po b/contents+my.po
index a8184ceb6..c92af134b 100644
--- a/contents+my.po
+++ b/contents+my.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Burmese (https://www.transifex.com/otf/teams/1519/my/)\n"
@@ -274,10 +274,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -346,9 +346,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -931,8 +930,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1137,14 +1136,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1157,7 +1156,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1292,9 +1291,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1473,9 +1471,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1574,9 +1571,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1654,11 +1650,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1777,17 +1772,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1797,9 +1791,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1809,8 +1801,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1820,9 +1812,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1833,8 +1823,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1911,9 +1901,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1951,9 +1939,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2044,9 +2030,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2228,9 +2213,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2246,10 +2230,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2287,9 +2270,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2303,10 +2285,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2500,7 +2482,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2511,7 +2493,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3476,8 +3458,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3604,7 +3585,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5080,8 +5061,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5112,12 +5093,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5137,7 +5118,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5149,9 +5130,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5310,8 +5289,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5541,7 +5520,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5810,7 +5789,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6386,9 +6365,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7313,11 +7293,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7417,8 +7396,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7465,11 +7444,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7499,9 +7477,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7562,8 +7539,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7581,9 +7557,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+nb.po b/contents+nb.po
index f4e79c977..a5b44b52f 100644
--- a/contents+nb.po
+++ b/contents+nb.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/otf/teams/1519/nb/)\n"
@@ -286,16 +286,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Nettleser kommer allerede installert med to tilleggsprogrammer - "
-"<mark><a href=\"https://www.eff.org/https-everywhere\">HTTPS "
-"Everywhere</a></mark> og <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> - og legge til noe annet "
-"kan deanonymisere deg."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -366,13 +361,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Du finner mer detaljert informasjon om Tor + VPN på<mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">vår "
-"wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -954,8 +945,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1160,14 +1151,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1180,7 +1171,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1319,9 +1310,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1512,9 +1502,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1613,9 +1602,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1694,11 +1682,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1823,17 +1810,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1843,9 +1829,7 @@ msgstr "Jeg har et problem med DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1855,8 +1839,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1866,9 +1850,7 @@ msgstr "Jeg har et problem med NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1879,8 +1861,8 @@ msgstr "Jeg har et problem med HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1959,9 +1941,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1999,9 +1979,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2094,9 +2072,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2280,9 +2257,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2298,10 +2274,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2339,9 +2314,8 @@ msgstr "Hvorfor sier Tor-nettleseren noe om at Firefox ikke fungerer?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2355,10 +2329,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2552,7 +2526,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2563,7 +2537,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3528,8 +3502,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3656,7 +3629,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5132,8 +5105,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5164,12 +5137,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5189,7 +5162,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5201,9 +5174,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5362,8 +5333,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5593,7 +5564,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5862,7 +5833,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6438,9 +6409,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7366,11 +7338,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7470,8 +7441,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7520,11 +7491,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7554,9 +7524,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7622,8 +7591,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7641,9 +7609,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+nl.po b/contents+nl.po
index f8103ceeb..5de9d5a6b 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>, 2019\n"
"Language-Team: Dutch (https://www.transifex.com/otf/teams/1519/nl/)\n"
@@ -289,10 +289,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -361,9 +361,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -946,8 +945,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1152,14 +1151,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1172,7 +1171,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1309,9 +1308,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1495,9 +1493,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1600,9 +1597,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1682,11 +1678,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1811,17 +1806,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1831,9 +1825,7 @@ msgstr "Ik heb een probleem met DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1843,8 +1835,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1854,9 +1846,7 @@ msgstr "Ik heb een probleem met NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1867,8 +1857,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1947,12 +1937,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser-menu\"/>"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1989,9 +1975,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2084,9 +2068,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2270,9 +2253,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2288,10 +2270,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2332,9 +2313,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2351,10 +2331,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2548,7 +2528,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2559,7 +2539,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3531,8 +3511,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3662,7 +3641,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5138,8 +5117,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5170,12 +5149,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5195,10 +5174,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion-"
-"pictogram\"/>"
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5209,12 +5186,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Groene ui met"
-" een hangslot\"/>"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5375,8 +5348,8 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5610,8 +5583,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -5879,7 +5852,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6455,9 +6428,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7383,11 +7357,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7487,8 +7460,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7537,11 +7510,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7571,9 +7543,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7636,8 +7607,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7657,9 +7627,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+pl.po b/contents+pl.po
index 2d2133585..0bd3d0d62 100644
--- a/contents+pl.po
+++ b/contents+pl.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Dawid Potocki <dpot(a)disroot.org>, 2019\n"
"Language-Team: Polish (https://www.transifex.com/otf/teams/1519/pl/)\n"
@@ -301,15 +301,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser podstawowo zawiera zainstalowane 2 add-ony — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> i "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — dodawanie "
-"czegokolwiek więcej może Cię deanonimizować."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -380,13 +376,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Możesz znaleźć więcej dokładnych informacji o Tor + VPN na <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">naszej"
-" wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -981,8 +973,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1200,14 +1192,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1222,7 +1214,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1368,13 +1360,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Jeśli Twój problem nie jest na liście, proszę wypełnij <mark><a "
-"href=\"https://trac.torproject.org\">zgłoszenie bugu</a></mark> o tym czego "
-"doświadczasz."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1580,14 +1568,9 @@ msgstr "Muszą być skonfigurowane osobno aby używać Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Jeśli musisz być pewny że cały ruch sieciowy przejdzie przez sieć Tor, "
-"popatrz na <mark><a href=\"https://tails.boum.org/\">system operacyjny Tails"
-" live</a></mark> który możesz odpalić na prawie każdym komputerze z pamięci "
-"USB lub DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1700,12 +1683,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Jest coś takiego jak <mark><a href=\"https://www.torbsd.org/\">projekt "
-"TorBSD</a></mark>, ale ich Tor Browser nie jest oficjalnie wspierana."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1802,18 +1782,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Więcej informacji na temat działania przekaźników ochronnych można znaleźć w"
-" tym <mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">wpisie na blogu</a></mark> i <mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">dokumencie</a></mark> o "
-"przekaźnikach ochronnych."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1952,24 +1925,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> jest "
-"domyślną wyszukiwarką w Przeglądarce Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo nie śledzi swoich użytkowników ani nie przechowuje żadnych danych"
-" o wyszukiwaniu użytkowników. Dowiedz się więcej o <mark><a "
-"href=\"https://duckduckgo.com/privacy\">polityce prywatności "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1978,12 +1944,8 @@ msgstr "Mam problem z DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Proszę zapoznaj się z <mark><a href=\"https://duck.co/help\">portalem "
-"wsparcia DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1992,12 +1954,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Jeśli uważasz, że jest to problem z Przeglądarką Tor, zgłoś go na naszej "
-"stronie do <mark><a href=\"https://trac.torproject.org/\">śledzenia "
-"błędów</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2006,12 +1965,8 @@ msgstr "Mam problem z NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Proszę zapoznaj się z <mark><a href=\"https://noscript.net/faq\">sekcją FAQ "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2021,11 +1976,9 @@ msgstr "Mam problem z HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Proszę zapoznaj się z <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">sekcją FAQ HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2115,12 +2068,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2167,12 +2116,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2282,13 +2227,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Jeśli chcesz zostać przekaźnikiem, zapoznaj się z naszym <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Przewodnikiem"
-" po Przekaźnikach Tora</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2506,13 +2447,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Dowiedz się "
-"więcej o tym w jaki sposób Przeglądarka Tora jest zaprojektowana</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2527,14 +2464,10 @@ msgstr "W Przeglądarce Tor, każda nowa domena otrzymuje swój własny obwód."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">Projekt i Implementacja Przeglądarki "
-"Tor</a></mark> dodatkowo wyjaśnia sposób myślenia stojący za tym projektem."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2580,13 +2513,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Przeglądarka Tor jest zbudowany przy użyciu <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark>, więc mogą wystąpić błędy dotyczące Firefoksa."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2602,16 +2531,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Jeśli korzystasz z programu antywirusowego, zobacz <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Moja ochrona "
-"antywirusowa/malware blokuje mi dostęp do Przeglądarki Tor</a></mark>, "
-"często zdarza się, że oprogramowanie antywirusowe/antymalware powoduje tego "
-"typu problemy."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2804,7 +2728,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2815,7 +2739,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3911,12 +3835,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Możesz również upewnić się że masz dostęp do innych usług cebulowych, łącząc"
-" się do <a href=\"http://3g2upl4pq6kufc4m.onion\">usługi cebulowej "
-"DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4065,7 +3985,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5569,11 +5489,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Na przykład serwis cebulowy \"DuckDuckGo\" to <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5608,22 +5526,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Usługi cebulowe są również wykorzystywane do prowadzenia chatów i wymiany "
-"plików bez metadanych (dane o danych), bezpieczniejszej interakcji pomiędzy "
-"dziennikarzami i ich źródłami, takimi jak <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> czy <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, bezpieczniejszych "
-"aktualizacji oprogramowania i bezpieczniejszych sposobów dotarcia do "
-"popularnych stron internetowych, takich jak <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5648,8 +5557,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5662,12 +5571,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5828,8 +5733,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6071,8 +5976,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### Aplikacja"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6402,8 +6307,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Demon"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7110,14 +7015,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI oznacza \"Otwarte Obserwatorium Zakłóceń Sieciowych\" (en. \"Open "
-"Observatory of Network Interference\"), jest to globalna sieć obserwacyjna "
-"do wykrywania [cenzury sieci](#network-censorship), nadzoru i manipulacji "
-"[ruchu](#traffic) w Internecie."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8216,18 +8118,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Ponadto, używanie ścieżek dłuższych niż 3 może zaszkodzić anonimowości, po "
-"pierwsze dlatego, że ułatwia ataki <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">blokady "
-"bezpieczeństwa</a></mark>, a po drugie dlatego, że może działać jako "
-"identyfikator, jeśli tylko niewielka liczba użytkowników ma taką samą "
-"długość ścieżki jak ty."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8329,11 +8224,9 @@ msgstr "Dziękujemy za wsparcie!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Więcej informacji na temat dotacji możesz znaleźć w naszym <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">FAQ darczyńców</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8393,17 +8286,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Sprawdź listę wszystkich <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">naszych "
-"sponsorów</a></mark> i serię <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">wpisów na "
-"blogu</a></mark> na temat naszych sprawozdań finansowych."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8436,13 +8323,9 @@ msgstr "Nie zalecamy używania Tor-a wraz z BitTorrent-em"
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Więcej szczegółów można znaleźć w <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">poście na naszym blogu na ten temat</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8521,11 +8404,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Wykonujemy pewne pomiary bezpieczeństwa funkcji sieciowych, które możesz "
-"sprawdzić "
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8544,14 +8424,9 @@ msgstr "Nie, nie świadczymy żadnych usług online."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Lista wszystkich naszych projektów w zakresie oprogramowania znajduje się na"
-" <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">stronie "
-"projektów</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
index 7455f0aae..4dac1c4e9 100644
--- a/contents+pt-BR.po
+++ b/contents+pt-BR.po
@@ -1,7 +1,5 @@
# Translators:
-# Danton Medrado, 2019
# Hildeberto Abreu Magalhães <hildeberto(a)gmail.com>, 2019
-# dark crystal <darc.krystal(a)insicuri.net>, 2019
# Greg Strider <gboufleur(a)gmail.com>, 2019
# Cy Belle <cyb3ll3(a)protonmail.com>, 2019
# Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>, 2019
@@ -12,14 +10,16 @@
# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2019
# m tk, 2019
# Communia <ameaneantie(a)riseup.net>, 2019
+# Danton Medrado, 2019
+# dark crystal <darc.krystal(a)insicuri.net>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: Communia <ameaneantie(a)riseup.net>, 2019\n"
+"Last-Translator: dark crystal <darc.krystal(a)insicuri.net>, 2019\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/otf/teams/1519/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -328,15 +328,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"O Navegador Tor já vem instalado com dois add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> e "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — e adicionar "
-"qualquer outra coisa poderia comprometer seu anonimato."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -422,13 +418,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Você pode encontrar informações mais detalhadas sobre Tor + VPN na <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nossa "
-"wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1126,8 +1118,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1345,14 +1337,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1365,7 +1357,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1508,13 +1500,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Se seu problema não estiver listado, por favor escreva um <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> sobre o que você "
-"está experienciando."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1720,14 +1708,9 @@ msgstr "Eles precisam ser configurados separadamente para utilizar o Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Caso você necessite garantir que todo o tráfego passará pela rede Tor, "
-"confira o <mark><a href=\"https://tails.boum.org/\">Sistema operacional "
-"\"live\" Tails</a></mark> com o qual você pode inicializar praticamente "
-"qualquer computador a partir de um drive USB ou de um DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1841,13 +1824,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Existe o projeto <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, mas o navegador Tor "
-"deles não é oficialmente suportado."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1943,18 +1922,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Para mais informações sobre como relés guardiães funcionam, veja essa "
-"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">postagem em nosso blog</a></mark>e essa <mark><a"
-" href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">publicação</a></mark>sobre "
-"guardiães de entrada."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2092,24 +2064,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> é o buscador"
-" padrão no navegador Tor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo não rastreia seus usuário nem armazena dados sobre pesquisas "
-"feitas por eles. Veja mais sobre <mark><a "
-"href=\"https://duckduckgo.com/privacy\">a política de privacidade "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2118,12 +2083,8 @@ msgstr "Eu estou tendo um problema com o DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Por favor veja o <mark><a href=\"https://duck.co/help\">portal de suporte do"
-" DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2132,12 +2093,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Se você acredita que esse é um problema do Navegador Tor, por favor relate o"
-" erro em nosso <mark><a href=\"https://trac.torproject.org/\">rastreador de "
-"erros</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2146,12 +2104,8 @@ msgstr "Eu estou tendo um problema com o NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Por favor veja o <mark><a href=\"https://noscript.net/faq\">FAQ do "
-"NoScript</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2161,11 +2115,9 @@ msgstr "Eu estou tendo um problema com o HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Por favor veja <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2260,12 +2212,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2310,12 +2258,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2423,13 +2367,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Se você desejar operar relé, por favor, veja nosso <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia de"
-" Relays do Tor </a></mark>"
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2640,12 +2580,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design/\"> "
-"Aprenda mais sobre o design do navegador Tor </a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2660,15 +2597,10 @@ msgstr "No Navegador Tor, cada novo domínio tem um circuito próprio."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"O documento <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">O Projeto e Implementação do Navegador Tor</a></mark> explica "
-"melhor o pensamento por trás deste projeto."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2714,13 +2646,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"O navegador Tor é feito utilizando-se o <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox ESR "
-"</a></mark>, então erros relacionados ao Firefox podem ocorrer."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2736,15 +2664,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Se você estiver executando um anti-virus, por favor veja <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Minha proteção "
-"antivirus/malware está me impedindo de acessar o Tor Browser</a></mark>, é "
-"comum que softwares anti-virus / anti-malware causem esse tipo de problema."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2939,7 +2863,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2950,7 +2874,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -4083,12 +4007,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Você também pode certificar-se de que é possível acessar outros serviços "
-"onion conectando-se ao <a href=\"http://3g2upl4pq6kufc4m.onion\">serviço "
-"onion do DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4238,7 +4158,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5745,11 +5665,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Por exemplo, o serviço onion DuckDuckGO é <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5784,22 +5702,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Os serviços onion também oferecem confiabilidade para chats e "
-"compartilhamento de arquivos livres de metadados, interações mais segura "
-"para jornalistas e suas fontes usando recursos como o <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> ou o <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, atualizações de "
-"software mais seguras e meios de acesso mais seguros a websites populares "
-"tais como o <mark><a href=\"https://www.facebook.com/notes/protect-the-graph"
-"/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5823,8 +5732,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5837,12 +5746,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6012,8 +5917,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6258,8 +6163,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### Aplicativo"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6585,8 +6490,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7289,13 +7194,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI significa \"Observatório Aberto de Interferência de Rede\", e é uma "
-"rede de observação global para detectar [censura](#network-censorship), "
-"vigilância e manipulação de [tráfego](#traffic) na internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8403,18 +8306,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Além disso, o uso de caminhos mais longos do que 3 poderá prejudicar seu "
-"anonimato; em primeiro lugar, porque torna mais fáceis os ataques de "
-"<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">negação de "
-"segurança</a></mark> e, em segundo lugar, porque funcionará como um "
-"identificador, já que somente um pequeno número de usuários seguirá um "
-"caminho com idêntico comprimento."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8515,12 +8411,9 @@ msgstr "Obrigado por seu apoio!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Você encontrará maiores informações sobre doações em nossa <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">FAQ para os "
-"doadores</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8581,17 +8474,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Confira a lista de todos os <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">nossos "
-"patrocinadores</a></mark> e uma série de <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">artigos em nosso"
-" blog</a></mark> sobre nossos relatórios financeiros."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8624,13 +8511,9 @@ msgstr "Nós não recomendamos utilizar o Tor com o BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Para maiores detalhes, por favor veja o <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">artigo em nosso blog sobre esse tema</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8708,12 +8591,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Nós, de fato, efetuamos algumas mensurações seguras sobre o funcionamento da"
-" rede, que você pode conferir na página de <mark><a "
-"href=\"https://metrics.torproject.org/\">Métricas do Tor</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8732,14 +8611,9 @@ msgstr "Não, nós não provemos quaisquer serviços online."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Uma lista de todos os nossos projetos de software está disponível em nossa "
-"<mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
-"projetos</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
index 6ec1fc7cf..75e6ac6a0 100644
--- a/contents+pt-PT.po
+++ b/contents+pt-PT.po
@@ -1,19 +1,19 @@
# Translators:
-# Rui Melo <viper5000pt(a)gmail.com>, 2019
# Emma Peel, 2019
# A Russo <quisquiliarum2001-habitica(a)yahoo.co.uk>, 2019
# Hugo9191 <hugoncosta(a)gmail.com>, 2019
# erinm, 2019
# Rui <xymarior(a)yandex.com>, 2019
# Manuela Silva <manuelarodsilva(a)gmail.com>, 2019
+# Rui Melo <viper5000pt(a)gmail.com>, 2019
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: Manuela Silva <manuelarodsilva(a)gmail.com>, 2019\n"
+"Last-Translator: Rui Melo <viper5000pt(a)gmail.com>, 2019\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/otf/teams/1519/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -309,15 +309,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"O Tor Browser já vem instalado com dois extras — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> e "
-"<mark><a href=\"https://noscript.net/\">NoScript</a></mark> — e a adição de "
-"qualquer outra poderá remover o seu anonimato."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -388,13 +384,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Pode encontrar mais informação detalhada sobre Tor + VPN na <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">nossa "
-"wiki</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -985,8 +977,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1201,14 +1193,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1221,7 +1213,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1366,13 +1358,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Se o seu problema não está listado, por favor, crie um <mark><a "
-"href=\"https://trac.torproject.org\">relatório de erro</a></mark> sobre a "
-"sua experiência."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1580,14 +1568,9 @@ msgstr "É necessário configurá-los individualmente para utilizar o Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Se precisar de se certificar que todo o tráfego será transmitido via rede "
-"Tor, veja o <mark><a href=\"https://tails.boum.org/\">sistema operativo "
-"\"live\" Tails</a></mark> que pode iniciar em quase qualquer computador "
-"através de uma pen USB ou um DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1703,12 +1686,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Existe o <mark><a href=\"https://www.torbsd.org/\">projeto "
-"TorBSD</a></mark>, mas o Tor Browser deles não é oficialmente suportado."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1805,18 +1785,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Para obter mais informação sobre como funcionam os retransmissores de "
-"guarda, consulte este <mark><a href=\"https://blog.torproject.org/improving-"
-"tors-anonymity-changing-guard-parameters\">artigo no blogue</a></mark> e "
-"esta <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">monografia</a></mark> sobre "
-"este tipo de retransmissor."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1955,24 +1928,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> é o motor de"
-" pesquisa predefinido no Tor Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"O DuckDuckGo não monitoriza os seus utilizadores nem armazena quaisquer "
-"dados sobre as pesquisas do utilizador. Saiba mais sobre a <mark><a "
-"href=\"https://duckduckgo.com/privacy\">política de privacidade do "
-"DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1981,12 +1947,8 @@ msgstr "Eu estou a ter um problema com DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Por favor, consulte o <mark><a href=\"https://duck.co/help\">portal de apoio"
-" do DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1995,12 +1957,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Se acredita que este é um problema do Tor Browser, por favor, comunique-o no"
-" nosso <mark><a href=\"https://trac.torproject.org/\">rastreador de "
-"erros</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2009,12 +1968,8 @@ msgstr "Eu estou a ter um problema com NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Por favor, consulte as <mark> <a href=\"https://noscript.net/faq\">Perguntas"
-" Mais Frequentes de NoScript</a> </mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2024,11 +1979,9 @@ msgstr "Eu estou a ter um problema com HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Por favor, consulte as <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\"> Perguntas Mais Frequentes de HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2118,12 +2071,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2168,12 +2117,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2284,13 +2229,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Se quiser ser tornar um roteador, por favor veja o nosso <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Guia de"
-" Roteamento Tor</a></mark>"
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2505,13 +2446,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Saiba mais "
-"sobre o desenho do Tor Browser</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2526,15 +2463,10 @@ msgstr "No Tor Browser, cada novo domínio recebe o seu próprio circuito."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"O documento <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">O Desenho e Implementação do Tor Browser</a></mark> explica "
-"ainda mais o pensamento por trás deste desenho."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2581,13 +2513,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"O Tor Browser é criado, utilizando o <mark><a href=\"https://www.mozilla.org"
-"/en-US/firefox/organizations/\">Firefox ESR </a></mark>, por isso poderão "
-"ocorreu erros relacionados com o Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2603,15 +2531,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Se estiver a executar um antivírus, por favor veja <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">O meu programa de proteção de"
-" antivírus/malware impede-me de aceder ao Tor Browser</a></mark>. É comum "
-"que programas de antivírus / antimalware causem este tipo de problema."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2804,7 +2728,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2815,7 +2739,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3914,12 +3838,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Também pode certificar-se que é possível aceder a outros serviços onion, "
-"ligando-se ao <a href=\"http://3g2upl4pq6kufc4m.onion\">serviço onion do "
-"DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4069,7 +3989,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5579,11 +5499,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Por exemplo, o \"onion\" de DuckDuckGo é <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5618,22 +5536,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Os serviços onion também contam com salas de conversação livres de metadados"
-" e partilha de ficheiros, interação mais segura entre jornalistas, e as suas"
-" fontes tal como com sites como o <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> ou o <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, atualizações de "
-"software mais seguras, e formas mais seguras para aceder a sites da Web "
-"populares, tal como o <mark><a href=\"https://www.facebook.com/notes"
-"/protect-the-graph/making-connections-to-facebook-more-"
-"secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5658,8 +5567,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5672,12 +5581,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5838,8 +5743,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -6081,8 +5986,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6410,8 +6315,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "### serviço"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7120,13 +7025,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI é o acrónimo em inglês de \"Observatório Aberto de Interferência de "
-"Rede\", e é uma rede de observação global para detetar [censura](#network-"
-"censorship), vigilância e manipulação de [tráfego](#traffic) na Internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -8234,18 +8137,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Além disso, a utilização de caminhos mais longos do que 3 poderá prejudicar "
-"o seu anonimato; em primeiro lugar, porque torna mais fácil os ataques de "
-"<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">negação de "
-"segurança</a></mark> e, em segundo lugar, porque funcionará como um "
-"identificador, já que apenas um pequeno número de utilizadores têm um "
-"caminho com o mesmo comprimento que o seu."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -8346,12 +8242,9 @@ msgstr "Obrigado pelo seu apoio!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Pode encontrar mais informação sobre doações nas nossas <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">Perguntas Mais Frequentes "
-"do doador</a></mark>. "
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8411,17 +8304,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Veja a lista de todos os <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">nossos "
-"patrocinadores</a></mark> e uma série de <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">artigos no nosso"
-" blogue</a></mark> sobre os nossos relatórios financeiros."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8455,13 +8342,9 @@ msgstr "Nós não recomendamos a utilização do Tor com o BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Para mais detalhes, por favor, consulte o nosso <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">artigo de blogue sobre o assunto</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8539,12 +8422,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Na verdade fazemos algumas medições seguras sobre o funcionamento da rede, e"
-" que qualquer pessoa pode verificar na página de <mark><a "
-"href=\"https://metrics.torproject.org/\">Métricas do Tor</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8563,14 +8442,9 @@ msgstr "Não, nós não oferecemos quaisquer serviços on-line."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Uma lista de todos os nossos projetos de software pode ser encontrada na "
-"nossa <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">página de "
-"projetos</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+ro.po b/contents+ro.po
index d88ac171a..338d3f928 100644
--- a/contents+ro.po
+++ b/contents+ro.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: A C <ana(a)shiftout.net>, 2019\n"
"Language-Team: Romanian (https://www.transifex.com/otf/teams/1519/ro/)\n"
@@ -301,15 +301,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser instalat are deja două extensii — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> și"
-" <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — și adăugarea"
-" altui program de completare ar putea să vă deanonimizeze."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -380,13 +376,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Puteți găsi mai multe informații mai detaliate despre Tor + VPN pe <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">wiki-"
-"ul nostru</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -975,8 +967,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1189,14 +1181,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1209,7 +1201,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1349,13 +1341,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Dacă problema dvs. nu se află pe listă, trimiteți un <mark><a "
-"href=\"https://trac.torproject.org\">raport de eroare</a></mark> în care să "
-"descrieți problema pe care o întâmpinați."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1559,14 +1547,9 @@ msgstr "Acestea trebuie să fie configurate separat pentru a utiliza Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Dacă trebuie să fiți sigur că tot traficul va trece prin rețeaua Tor, "
-"aruncăm o privire la <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> pe care îl puteți porni pe aproape orice "
-"computer de pe un stick USB sau un DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1671,9 +1654,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1751,11 +1733,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1874,17 +1855,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1894,9 +1874,7 @@ msgstr "Am o problemă cu DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1906,8 +1884,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1917,9 +1895,7 @@ msgstr "Am o problemă cu NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1930,8 +1906,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -2008,9 +1984,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -2048,9 +2022,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2141,9 +2113,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2326,9 +2297,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2344,10 +2314,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2387,9 +2356,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2403,10 +2371,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2600,7 +2568,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2611,7 +2579,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3589,8 +3557,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3717,7 +3684,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5193,8 +5160,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5225,12 +5192,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5250,7 +5217,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5262,9 +5229,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5427,8 +5392,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5658,7 +5623,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5927,7 +5892,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6503,9 +6468,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7430,11 +7396,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7534,8 +7499,8 @@ msgstr "Vă mulțumim pentru sprijin!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7582,17 +7547,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Verifică lista cu toți <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">sponsorii "
-"noștri</a></mark> și o serie de <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">postări pe "
-"blog</a></mark> despre raportul nostru financiar."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7621,13 +7580,9 @@ msgstr "Nu recomandăm folosirea Tor împreună cu BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Pentru mai multe detalii, te rog vezi <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">postarea noastră pe blog asupra subiectului</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -7687,8 +7642,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7706,9 +7660,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+ru.po b/contents+ru.po
index cdf08b2d4..12de34002 100644
--- a/contents+ru.po
+++ b/contents+ru.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: solokot <solokot(a)gmail.com>, 2019\n"
"Language-Team: Russian (https://www.transifex.com/otf/teams/1519/ru/)\n"
@@ -303,15 +303,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser включает дополнения <mark><a href=\"https://www.eff.org/https-"
-"everywhere\">HTTPS Everywhere</a></mark> и <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark>. Установка другого "
-"дополнения может нарушить вашу анонимность."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -382,12 +378,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Подробнее об использовании Tor и VPN можно узнать в нашем <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">вики</a></mark>."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -975,8 +968,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1187,14 +1180,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1207,7 +1200,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1346,13 +1339,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Если проблема не упоминается, пожалуйста, <mark><a "
-"href=\"https://trac.torproject.org\">сообщите о ней "
-"разработчикам</a></mark>."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1550,13 +1539,9 @@ msgstr "Чтобы они смогли использовать Tor, их над
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Хотите пропускать все данные через сеть Tor? Обратите внимание на<mark><a "
-"href=\"https://tails.boum.org/\">операционную систему Tails</a></mark>. Ее "
-"можно запустить практически на любом компьютере с USB-флешки или диска DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1665,13 +1650,9 @@ msgstr "Извините, пока нет официальной поддерж
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"Существует проект <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD</a></mark>, но их версия Tor Browser"
-" неофициальная."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1758,16 +1739,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"О том, как работают входные узлы, см. <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">блог</a></mark> и <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">этот материал</a></mark>."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1901,23 +1877,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"Поисковая система Tor Browser по умолчанию – <mark><a "
-"href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo не следит за пользователями и не хранит данные о поисковых "
-"запросах. С политикой приватности DuckDuckGo можно познакомиться <mark><a "
-"href=\"https://duckduckgo.com/privacy\">здесь</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1926,12 +1896,8 @@ msgstr "У меня проблемы с DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Пожалуйста, обратитесь к <mark><a href=\"https://duck.co/help\">сайту "
-"поддержки DuckDuckGo</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1940,11 +1906,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Если считаете, что это проблема Tor Browser, пожалуйста, <mark><a "
-"href=\"https://trac.torproject.org/\">сообщите нам</a></mark>."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1953,12 +1917,8 @@ msgstr "У меня проблемы с NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Пожалуйста посмотрите <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1968,11 +1928,9 @@ msgstr "У меня проблемы с HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Пожалуйста, см. <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2061,12 +2019,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2111,12 +2065,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"Новая "
-"цепочка для этого сайта\"/>"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2227,13 +2177,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Если хотите стать узлом, пожалуйста, см. наше <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">руководство"
-" по узлам Tor</a></mark>."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2444,13 +2390,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Узнайте "
-"больше о дизайне Tor Browser</a></mark>."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2465,14 +2407,10 @@ msgstr "В Tor Browser для каждого нового домена испо
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Подробнее об этом см. <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">Проект и реализация Tor Browser</a></mark>."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2517,14 +2455,9 @@ msgstr "Tor Browser сообщает, что Firefox не работает. По
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser построен с использованием <mark><a "
-"href=\"https://www.mozilla.org/en-US/firefox/organizations/\">Firefox "
-"ESR</a></mark> (\"продвинутой\" версии для администраторов). Могут возникать"
-" сообщения об ошибках Firefox, свойственных этой категории пользователей."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2539,15 +2472,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Если у вас работает антивирус, пожалуйста, обратите внимание на раздел "
-"<mark><a href=\"http://support.torproject.org/#tbb-10\">Мой антивирус "
-"блокирует доступ к Tor Browser</a></mark>. Антивирусы нередко вызывают "
-"такого рода проблемы."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2740,7 +2669,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2751,7 +2680,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3825,12 +3754,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Убедитесь, что у вас есть доступ к другим onion-сервисам – попробуйте "
-"открыть <a href=\"http://3g2upl4pq6kufc4m.onion\">onion-версию поисковой "
-"системы DuckDuckGo</a>."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -3974,7 +3899,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5468,11 +5393,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Например, onion-сайт поисковой системы DuckDuckGo – <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5506,21 +5429,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Ресурсы .onion также используются для чатов и обмена файлами без "
-"использования метаданных, для более безопасного взаимодействия между "
-"журналистами и их источниками (с инструментами вроде <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> и <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>), для более "
-"безопасного обновления программ и доступа к популярным сайтам, таким как "
-"<mark><a href=\"https://www.facebook.com/notes/protect-the-graph/making-"
-"connections-to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5542,8 +5457,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5554,12 +5469,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5720,8 +5631,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5960,8 +5871,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6272,8 +6183,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6910,9 +6821,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7877,18 +7789,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Кроме того, использование цепей длиной более 3 может нанести ущерб "
-"анонимности, прежде всего потому, что это облегчает <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">атаку на "
-"безопасность</a></mark>, а во-вторых, потому что он может действовать как "
-"идентификатор, если только небольшое количество пользователей имеет ту же "
-"длину пути, что и вы."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -7989,11 +7894,9 @@ msgstr "Спасибо за поддержку."
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Подробнее о пожертвованиях можно прочитать в нашем <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">FAQ для доноров</a></mark>."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -8053,17 +7956,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Вы можете посмотреть <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">список наших "
-"спонсоров</a></mark> и серию <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">публикаций в "
-"блоге</a></mark> о нашей финансовой отчетности."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -8094,12 +7991,9 @@ msgstr "Мы не рекомендуем использовать Tor с BitTorr
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Подробности можно узнать <mark><a href=\"https://blog.torproject.org"
-"/bittorrent-over-tor-isnt-good-idea\">в нашем блоге</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -8175,11 +8069,8 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"Мы делаем определенные измерения работы сети. Вы можете увидеть их на сайте "
-"<mark><a href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark>."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -8198,12 +8089,9 @@ msgstr "Нет, мы не предоставляем никаких онлайн
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Полный список наших программных проектов можно видеть <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">здесь</a></mark>."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+sr.po b/contents+sr.po
index fe38141aa..b2200bdff 100644
--- a/contents+sr.po
+++ b/contents+sr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Aleksa Ristić, 2019\n"
"Language-Team: Serbian (https://www.transifex.com/otf/teams/1519/sr/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1297,9 +1296,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1486,9 +1484,8 @@ msgstr "Potrebno je posebno ih konfigurisati da koriste Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1590,9 +1587,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1677,16 +1673,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"Za više informacija o tome kako releji Stražari rade pogledajte ovu <mark><a"
-" href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog objavu</a></mark> i <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">dokument</a></mark> o njima."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1811,17 +1802,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1831,12 +1821,8 @@ msgstr "Imam problem sa DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"Molimo poledajte <mark><a href=\"https://duck.co/help\">DuckDuckGo portal "
-"podrške</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1845,8 +1831,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1856,12 +1842,8 @@ msgstr "Imam problem sa NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"Molimo pogledajte <mark><a href=\"https://noscript.net/faq\">NoScript često "
-"postavljena pitanja</a></mark>."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1871,11 +1853,9 @@ msgstr "Imam problem sa HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Molimo pogledajte <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere često postavljena pitanja</a></mark>."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -1951,12 +1931,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1993,12 +1969,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2088,9 +2060,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2272,9 +2243,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2290,10 +2260,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2331,9 +2300,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2347,10 +2315,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2544,7 +2512,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2555,7 +2523,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3529,8 +3497,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3657,7 +3624,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5133,8 +5100,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5165,12 +5132,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5190,7 +5157,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5202,9 +5169,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5363,8 +5328,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5594,7 +5559,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5863,7 +5828,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6439,9 +6404,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7366,11 +7332,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7470,8 +7435,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7518,11 +7483,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7552,9 +7516,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7615,8 +7578,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7634,9 +7596,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+sv.po b/contents+sv.po
index 4f50e8a17..bb44ef9c2 100644
--- a/contents+sv.po
+++ b/contents+sv.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Jonatan Nyberg, 2019\n"
"Language-Team: Swedish (https://www.transifex.com/otf/teams/1519/sv/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1297,9 +1296,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1478,9 +1476,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1579,9 +1576,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1659,11 +1655,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1785,17 +1780,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1805,9 +1799,7 @@ msgstr "Jag har problem med DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1817,8 +1809,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1828,9 +1820,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1841,8 +1831,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1919,12 +1909,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\"> "
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -1961,9 +1947,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2054,9 +2038,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2240,9 +2223,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2258,10 +2240,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2299,9 +2280,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2315,10 +2295,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2512,7 +2492,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2523,7 +2503,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3492,8 +3472,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3623,7 +3602,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5099,8 +5078,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5131,12 +5110,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5156,8 +5135,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5168,9 +5147,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5329,8 +5306,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5560,7 +5537,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5829,7 +5806,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6405,9 +6382,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7332,11 +7310,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7436,8 +7413,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7484,11 +7461,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7518,9 +7494,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7581,8 +7556,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7600,9 +7574,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+sw.po b/contents+sw.po
index 7db6c3527..959f53230 100644
--- a/contents+sw.po
+++ b/contents+sw.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Swahili (https://www.transifex.com/otf/teams/1519/sw/)\n"
@@ -274,10 +274,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -346,9 +346,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -931,8 +930,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1137,14 +1136,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1157,7 +1156,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1292,9 +1291,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1473,9 +1471,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1574,9 +1571,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1654,11 +1650,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1779,17 +1774,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1799,9 +1793,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1811,8 +1803,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1822,9 +1814,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1835,8 +1825,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1913,9 +1903,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1953,9 +1941,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2046,9 +2032,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2230,9 +2215,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2248,10 +2232,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2289,9 +2272,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2305,10 +2287,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2502,7 +2484,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2513,7 +2495,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3483,8 +3465,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3611,7 +3592,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5087,8 +5068,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5119,12 +5100,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5144,8 +5125,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "moja"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5156,9 +5137,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5317,8 +5296,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5548,7 +5527,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5817,7 +5796,7 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6393,9 +6372,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7320,11 +7300,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7424,8 +7403,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7472,11 +7451,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7506,9 +7484,8 @@ msgstr "Hatukupendekeza kutumia Tor na BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7569,8 +7546,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7588,9 +7564,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+th.po b/contents+th.po
index 0776aa6a4..a9c7797e3 100644
--- a/contents+th.po
+++ b/contents+th.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Thai (https://www.transifex.com/otf/teams/1519/th/)\n"
@@ -282,10 +282,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -354,9 +354,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -939,8 +938,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1145,14 +1144,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1165,7 +1164,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1300,9 +1299,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1481,9 +1479,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1582,9 +1579,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1662,11 +1658,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1785,17 +1780,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1805,9 +1799,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1817,8 +1809,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1828,9 +1820,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1841,8 +1831,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1919,9 +1909,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1959,9 +1947,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2052,9 +2038,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2236,9 +2221,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2254,10 +2238,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2295,9 +2278,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2311,10 +2293,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2508,7 +2490,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2519,7 +2501,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3484,8 +3466,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3612,7 +3593,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5088,8 +5069,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5120,12 +5101,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5145,7 +5126,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5157,9 +5138,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5318,8 +5297,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5549,7 +5528,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5818,7 +5797,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6394,9 +6373,10 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7321,11 +7301,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7425,8 +7404,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7473,11 +7452,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7507,9 +7485,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7570,8 +7547,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7589,9 +7565,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+tr.po b/contents+tr.po
index f2b31fa96..86790ae20 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2019\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
@@ -318,16 +318,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser <mark><a href=\"https://www.eff.org/https-everywhere\">HTTPS "
-"Everywhere</a></mark> ve <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> eklentileri kurulmuş "
-"olarak gelir. Bunlardan başka eklentiler kurmak anonim kalmanızı tehlikeye "
-"atabilir ve kimliğinizi açığa çıkarabilir."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -413,13 +408,9 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"Tor + VPN hakkında ayrıntılı bilgi almak için <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">wiki "
-"sayfamıza</a></mark> bakabilirsiniz."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1141,11 +1132,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
-"Örneğin, `torbrowser-install-win64-9.0_en-US.exe` dosyasının imza dosyası "
-"`torbrowser-install-win64-9.0_en-US.exe.asc` şeklindedir."
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1386,20 +1375,16 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1412,11 +1397,9 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1587,13 +1570,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"Yaşadığınız sorun ile ilgili bir bilgi yoksa, bu sorun hakkında bir <mark><a"
-" href=\"https://trac.torproject.org\">hata bildiriminde</a></mark> "
-"bulunabilirsiniz."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1805,14 +1784,9 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"Tüm trafiğin Tor ağından geçeceğinden emin olmanız gerekiyorsa, <mark><a "
-"href=\"https://tails.boum.org/\">Tails canlı işletim sistemine</a></mark> "
-"bir göz atın. Bu sistemi hemen hemen her bilgisayarda USB bellek ya da DVD "
-"üzerinden başlatabilirsiniz."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1933,13 +1907,9 @@ msgstr "Maalesef, henüz *BSD için resmi bir Tor Browser sürümümüz yok."
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"<mark><a href=\"https://www.torbsd.org/\">TorBSD projesi</a></mark> olarak "
-"adlandırılmış bir çalışma var ancak bu grubun hazırladığı Tor Browser "
-"uygulamasını resmi olarak desteklemiyoruz."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -2031,18 +2001,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
-msgstr ""
-"Koruma aktarıcılarının çalışması ile ilgili ayrıntılı bilgi almak için "
-"<mark><a href=\"https://blog.torproject.org/improving-tors-anonymity-"
-"changing-guard-parameters\">günlük yazısına</a></mark>, giriş korumaları ile"
-" ilgili ayrıntılı bilgi almak için <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">ilgili yayına</a></mark> "
-"bakabilirsiniz."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
+msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2196,24 +2159,17 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"Tor Browser için varsayılan arama motoru olarak <mark><a "
-"href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> kullanılıyor."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo kullanıcılarını izlemez ya da kullanıcı aramaları ile ilgili "
-"herhangi bir veriyi kaydetmez. Ayrıntılı bilgi almak için <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo gizlilik ilkesine "
-"bakabilirsiniz</a></mark>."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2222,12 +2178,8 @@ msgstr "DuckDuckGo ile ilgili bir sorun yaşıyorum."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"<mark><a href=\"https://duck.co/help\">DuckDuckGo destek sitesine</a></mark>"
-" bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2236,12 +2188,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"Sorunun Tor Browser ile ilgili olduğunu düşünüyorsanız <mark><a "
-"href=\"https://trac.torproject.org/\">hata izleyici</a></mark> üzerinden "
-"bildirmeniz iyi olur."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2250,12 +2199,8 @@ msgstr "NoScript ile ilgili bir sorun yaşıyorum."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"<mark><a href=\"https://noscript.net/faq\">NoScript SSS</a></mark> bölümüne "
-"bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2265,11 +2210,9 @@ msgstr "HTTPS Everywhere ile ilgili bir sorun yaşıyorum."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"<mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS Everywhere "
-"SSS</a></mark> bölümüne bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2362,12 +2305,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2414,12 +2353,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2535,13 +2470,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"Bir aktarıcı işletmek ile ilgili ayrıntılı bilgi almak için <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Aktarıcı Rehberine</a></mark> bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2772,13 +2703,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"Ayrıntılı bilgi almak için <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Tor Browser "
-"Tasarımı</a></mark> bölümüne bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2794,15 +2721,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"Bu konuyla ilgili ayrıntılı bilgi almak için <mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/#identifier-"
-"linkability\">Tor Browser Tasarımı ve Uygulaması</a></mark> bölümüne "
-"bakabilirsiniz."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2847,13 +2769,9 @@ msgstr "Tor Browser neden Firefox çalışmıyor gibi uyarılar veriyor?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark> üzerine kurulmuştur. Bu "
-"nedenle Firefox uygulaması ile ilgili sorunlar çıkabilir."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2869,16 +2787,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"Bir virusten koruma uygulaması çalıştırıyorsanız <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">Virüs ya da kötü amaçlı "
-"yazılımdan korunma uygulamam Tor Browser kullanmamı engelliyor</a></mark>Bu "
-"tür bir soruna genellikle virüs ya da kötü amaçlı yazılımdan korunma "
-"uygulamaları yol açar."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -3141,39 +3054,22 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
"doing CONNECT requests to get to Tor relays. (It's fine if they're the same "
"proxy.) Tor also recognizes the torrc options Socks4Proxy and Socks5Proxy."
msgstr ""
-"Vekil sunucu IP adresi, kapı numarası ve kimlik doğrulama bilgilerini [Tor "
-"Browser Ağ Ayarları](https://tb-manual.torproject.org/running-tor-browser/) "
-"bölümünde belirtebilirsiniz. Tor ağını başka bir şekilde kullanıyorsanız, "
-"[belgeler bölümündeki](https://2019.www.torproject.org/docs/tor-"
-"manual.html.en) HTTPProxy ve HTTPSProxy yapılandırma ayarlarına bakın ve "
-"torrc dosyasını uygun şekilde düzenleyin. Tor dizinini almak için "
-"yapacağınız GET istekleri için bir HTTP vekil sunucu, Tor aktarıcılarını "
-"almak için yapacağınız CONNECT istekleri için bir HTTPS vekil sunucu "
-"kullanmanız gerekir (ikisi de aynı vekil sunucu olabilir). Ayrıca torrc "
-"dosyasında Socks4Proxy ve Socks5Proxy yapılandırma ayarları da "
-"kullanılabilir."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
-"Vekil sunucunuz için kimlik doğrulaması gerekiyorsa HTTPProxyAuthenticator "
-"ve HTTPSProxyAuthenticator ayarlarının ne olduğuna da bakın. Şu anda yalnız "
-"temel kimlik doğrulama yöntemini destekliyoruz. Bununla birlikte NTLM kimlik"
-" doğrulama yöntemini kullanmanız gerekiyorsa [bu arşiv "
-"yazısı](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) işinize "
-"yarayabilir."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
@@ -4378,12 +4274,8 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Ayrıca <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo onion "
-"hizmetine</a> bağlanarak diğer onion hizmetlerine erişebileceğinizden emin "
-"olabilirsiniz."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4548,10 +4440,8 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
-"[Buradan HTTPS hakkında ayrıntılı bilgi](https://tb-manual.torproject.org"
-"/secure-connections/) alabilirsiniz"
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -6336,12 +6226,9 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"Örneğin DuckDuckGo onion adresi <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a> "
-"şeklindedir."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -6376,22 +6263,13 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"Ayrıca Onion hizmetlerini kullanarak üst veriler olmadan sohbet ve dosya "
-"paylaşımı, gazeteciler ve <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> ya da <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark> gibi kaynakları "
-"arasında daha güvenli etkileşim, daha güvenli yazılım güncellemeleri ve "
-"<mark><a href=\"https://www.facebook.com/notes/protect-the-graph/making-"
-"connections-to-facebook-more-secure/1526085754298237/\">Facebook</a></mark> "
-"gibi yaygın web sitelerine daha güvenli yollarla erişim gibi işlemler "
-"yapılabilir. "
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6416,8 +6294,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6431,12 +6309,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6619,13 +6493,9 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
-"[https://trac.torproject.org](https://trac.torproject.org) adresinden bir "
-"destek kaydı açabilirsiniz. Tor Browser 8 ile ilgili tüm sorunları ff60-esr "
-"anahtar sözcüğü ile izliyoruz. Web sitemiz ile ilgili destek kayıtları "
-"\"Webpages/Website\" bileşeni ile eklenmelidir."
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -6892,8 +6762,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App, Uygulama"
+msgid "### app"
+msgstr "### app, uygulama"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7216,8 +7086,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon, Arka plan işlemi"
+msgid "### daemon"
+msgstr "### daemon, arka plan işlemi"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7921,14 +7791,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"\"Open Observatory of Network Interference\" (OONI), dünya üzerindeki "
-"İnternet [sansürü](#network-censorship), ağ gözetlemesi ve "
-"[trafik](#traffic) müdahalesi gibi girişimleri belirlemek için kurulmuş bir "
-"küresel gözlem ağıdır."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -9036,18 +8903,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"3 duraktan uzun yolların kullanılması anonim kalmayı da olumsuz "
-"etkileyebilir. Öncelikle <mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">Denial of "
-"Security</a></mark> saldırılarının yapılmasını kolaylaştırır. Ayrıca sizinle"
-" aynı durak sayısını kullanan kullanıcıların sayısı az ise bu bilgi kim "
-"olduğunuzu belirlemek için kullanılabilir."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -9150,11 +9010,9 @@ msgstr "Desteğiniz için teşekkür ederiz!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"Bağış yapmak için <mark><a href=\"https://donate.torproject.org/donor-"
-"faq\">Bağış SSS</a></mark> bölümüne bakabilirsiniz."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -9213,17 +9071,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Ayrıntılı bilgi almak için <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">destekçi "
-"listemize</a></mark> ve mali durumumuz hakkındaki <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">günlük "
-"yazılarımıza</a></mark> bakabilirsiniz."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -9256,13 +9108,9 @@ msgstr "Tor uygulamasının BitTorrent ile birlikte kullanılmasını önermiyor
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Ayrıntılı bilgi almak için <mark><a href=\"https://blog.torproject.org"
-"/bittorrent-over-tor-isnt-good-idea\">bu konu hakkındaki günlük yazısına "
-"bakabilirsiniz</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -9337,12 +9185,8 @@ msgstr "Tor kim olduğunuzu açığa çıkaracak herhangi bir günlük kaydı tu
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"<mark><a href=\"https://metrics.torproject.org/\">Tor "
-"İstatistikleri</a></mark> bölümünde görebileceğiniz gibi yalnız ağın "
-"çalışması ile ilgili bazı güvenli ölçümler yapıyoruz."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -9361,13 +9205,9 @@ msgstr "Hayır, herhangi bir çevrimiçi hizmet sunmuyoruz."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"Tüm yazılım projelerimizi <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projeler "
-"sayfamızda</a></mark> görebilirsiniz."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+uk.po b/contents+uk.po
index a5214189b..1c8038e3c 100644
--- a/contents+uk.po
+++ b/contents+uk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Sergio Thirdlingson <serge3ling(a)gmail.com>, 2019\n"
"Language-Team: Ukrainian (https://www.transifex.com/otf/teams/1519/uk/)\n"
@@ -279,10 +279,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -351,9 +351,8 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -936,8 +935,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1142,14 +1141,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1162,7 +1161,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1298,9 +1297,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1479,9 +1477,8 @@ msgstr ""
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1580,9 +1577,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1661,11 +1657,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1786,17 +1781,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1806,9 +1800,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1818,8 +1810,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1829,9 +1821,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1842,8 +1832,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1920,9 +1910,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1960,9 +1948,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2053,9 +2039,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2237,9 +2222,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2255,10 +2239,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2296,9 +2279,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2315,10 +2297,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2512,7 +2494,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2523,7 +2505,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3495,8 +3477,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3626,7 +3607,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5104,8 +5085,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5136,12 +5117,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5161,7 +5142,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5173,9 +5154,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5334,8 +5313,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5565,7 +5544,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5834,7 +5813,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6410,9 +6389,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7339,11 +7319,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7443,8 +7422,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7492,11 +7471,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7526,13 +7504,9 @@ msgstr ""
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"Для отримання додаткової інформації, будь ласка, перегляньте нашу <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-"
-"idea\">публікацію блогу з цього питання</a></mark>."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -7594,8 +7568,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7615,9 +7588,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
index 180b43d4e..65c54b681 100644
--- a/contents+zh-CN.po
+++ b/contents+zh-CN.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
@@ -287,14 +287,11 @@ msgstr "插件本身可能就被恶意设计用于监控您。"
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor 浏览器已经默认安装了两个插件 —— <mark><a href=\"https://www.eff.org/https-"
-"everywhere\">HTTPS Everywhere</a></mark> 和 <mark><a "
-"href=\"https://noscript.net/\">NoScript</a></mark> —— 再安装别的插件将会让你降低(或失去)匿名性。"
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -372,13 +369,9 @@ msgstr "通常情况下,除非你知道如何把 VPN 和 Tor 在不侵犯你
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"了解关于 Tor 与 VPN 组合使用等更多信息,请访问<mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">我们的 "
-"wiki</a></mark>。"
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -970,8 +963,8 @@ msgstr "它们允许你验证你下载的文件正是我们希望你获取的文
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1184,20 +1177,16 @@ msgstr "下面的例子假设你已经下载了这样的两个文件到你的\"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
-"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1208,11 +1197,9 @@ msgstr "#### 对于 GNU/Linux 的用户(如果您有32位的安装包,请将
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
-"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1353,12 +1340,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"如果你的问题不在列表中,请提交一个你遇到的问题的 <mark><a href=\"https://trac.torproject.org\">bug "
-"报告</a></mark>。"
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1536,12 +1520,9 @@ msgstr "需要单独配置来使用 Tor。"
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
-"如果您要确保所有流量都将通过 Tor 网络传输,请尝试能通过 USB 设备或 DVD 在几乎所有电脑上启动的 <mark><a "
-"href=\"https://tails.boum.org/\">Tails</a></mark> Live 操作系统。"
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1639,11 +1620,9 @@ msgstr "抱歉,我们没有官方支持 *BSD 系统上的 Tor 浏览器。"
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"不过有一个非官方支持的 <mark><a href=\"https://www.torbsd.org/\">TorBSD 项目</a></mark>。"
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1722,16 +1701,11 @@ msgstr "其余的中继会在你每次访问新网站时改变,这三个 Tor
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"要了解中转节点如何工作,请参阅<mark><a href=\"https://blog.torproject.org/improving-tors-"
-"anonymity-changing-guard-parameters\">这篇博客文章</a></mark>和<mark><a "
-"href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">这篇论文</a></mark>。"
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -1852,22 +1826,17 @@ msgstr "Tor 浏览器使用什么搜索引擎,它是如何保护我的隐私
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> 是 Tor "
-"浏览器的默认搜索引擎。"
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
-"DuckDuckGo (声称)不会跟踪它的用户也不会储存用户搜索的信息,你可以阅读 <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo 的隐私政策 </a></mark>了解更多信息。"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -1876,12 +1845,8 @@ msgstr "我使用 DuckDuckGo 时遇到了问题。"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
-"请访问 <mark><a href=\"https://duck.co/help\">DuckDuckGo 的支持网站</a></mark> "
-"了解详细信息。"
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -1890,11 +1855,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"如果你确信这是 Tor 浏览器的问题,请你报告给<mark><a href=\"https://trac.torproject.org/\">我们的 "
-"Bug 跟踪平台</a></mark>。"
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -1903,11 +1866,8 @@ msgstr "我遇到 NoScript 的使用问题。"
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
-"请参阅 <mark><a href=\"https://noscript.net/faq\">NoScript 的常见问题 </a></mark>。"
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -1917,11 +1877,9 @@ msgstr "我遇到 HTTPS Everywhere 的使用问题。"
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"请参阅 <mark><a href=\"https://www.eff.org/https-everywhere/faq\">HTTPS "
-"Everywhere 的常见问题 </a></mark>。"
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -1998,12 +1956,8 @@ msgstr "Tor 浏览器会提示你所有的活动和下载会被终止,在你
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2040,12 +1994,8 @@ msgstr "这个选项不会清除任何私密信息或者取消关联你的活动
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2135,13 +2085,9 @@ msgstr "这意味着你的电脑不会用于中继其他人的流量。"
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"如果你希望成为一个 Tor 中继,请参阅<mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"中继指南</a></mark>。"
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2323,13 +2269,9 @@ msgstr "虽然你可以同时使用 Tor 浏览器和其他的浏览器,但是
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">了解关于 Tor "
-"浏览器的设计的更多信息</a></mark>。"
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2344,13 +2286,10 @@ msgstr "Tor 浏览器中,每一个新的羽毛会分配到一条独立的链
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">Tor 浏览器的设计和实现 </a></mark>文档进一步解释了设计背后的思考。"
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2388,12 +2327,9 @@ msgstr "为什么 Tor 浏览器会提示“Firefox 没有响应“?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor 浏览器基于 <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark> 开发,所以也许会遇到 Firefox 的错误。"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2406,13 +2342,11 @@ msgstr "请确认你只有一个 Tor 浏览器在运行并且你的 Tor 浏览
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"请参阅<mark><a href=\"http://support.torproject.org/#tbb-10\">我的防病毒软件 / "
-"反恶意软件工具阻止我使用 Tor 浏览器</a></mark>,这是这种问题产生的主要原因。"
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -2607,7 +2541,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2618,7 +2552,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3636,11 +3570,8 @@ msgstr "有可能是网络连接有出现暂时性阻碍,或者是该网站的
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"你也可以通过连接 <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo "
-"的洋葱服务</a>确认你可以访问其他的洋葱服务。"
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -3766,9 +3697,8 @@ msgstr "HTTPS连接被用于确保电脑网络中的通讯安全。"
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
-"你可以[了解更多有关HTTPS](https://tb-manual.torproject.org/secure-connections/)。"
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -5251,11 +5181,9 @@ msgstr "只能通过 Tor 访问的网站称作“洋葱服务”,它们以 .on
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"例如 DuckDuckGo 的洋葱服务: <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -5285,18 +5213,13 @@ msgstr "洋葱服务允许人们匿名的访问和发表信息,包括架设匿
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
-msgstr ""
-"有各种各样的洋葱服务网站,例如让记者和他的资料来源间无元数据的交谈和安全的传输文件的 <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> 和 <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a>,安全的更新软件,以及以更安全的方式访问<mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>一类的网站。"
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5315,8 +5238,8 @@ msgstr "当你浏览洋葱服务网站时,Tor 浏览器会在地址栏左侧
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -5327,10 +5250,8 @@ msgstr "并且如果您正在通过 HTTPS 协议访问一个支持洋葱服务
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
-msgstr "<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"有锁型标志的绿色洋葱\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -5488,8 +5409,8 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5721,8 +5642,8 @@ msgstr "如果您不知道如何允许 Tor,就可能需要查阅杀毒软件
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6007,8 +5928,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### 后台进程"
+msgid "### daemon"
+msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -6636,12 +6557,11 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI 表示“Open Observatory of Network Interference网络干预开放观测台”,这是一个全球性为了侦测[审查"
-"](#network-censorship),监视和[流量](#traffic)操控的观测网络。"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7622,14 +7542,11 @@ msgstr "因为会增加网络的负载而且(据我们所知)不会提供任
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"而且使用超过三个中继的线路会损害你的匿名性,首先这会让<mark><a "
-"href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">拒绝服务攻击</a></mark>更容易,其次如果只有很少的用户的中继长度和你一样的话,你会更容易被区分出来。"
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -7728,11 +7645,9 @@ msgstr "感谢你的支持!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"您可以访问<mark><a href=\"https://donate.torproject.org/donor-"
-"faq\">捐款常见问题界面</a></mark>,以了解更多捐款方面的信息。"
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -7781,15 +7696,11 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"你可以我们的财务报告上查询<mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">捐款人</a></mark>和一系列<mark><a"
-" href=\"https://blog.torproject.org/category/tags/form-990\">日志</a></mark>。"
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -7818,12 +7729,9 @@ msgstr "不推荐将 Tor 和 BitTorrent 一起使用。"
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"更多信息请查阅我们的<mark><a href=\"https://blog.torproject.org/bittorrent-over-tor-"
-"isnt-good-idea\">有关这个项目的博文</a></mark>。"
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -7884,11 +7792,8 @@ msgstr "Tor 不会保留能识别用户身份的日志记录。"
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
-"不过,为了用于提高网络的安全性,我们会存留一些关于网络功能的日志。您可以在 <mark><a "
-"href=\"https://metrics.torproject.org/\">Tor Metrics</a></mark> 中查看到。"
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -7905,12 +7810,9 @@ msgstr "不,我们不提供任何在线服务。"
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">我们的页面上</a></mark>有我们开发的软件的列表。"
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index 28f236b80..82aebdc25 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
"Last-Translator: Bryce Tsao <tsaodingtw(a)gmail.com>, 2019\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/otf/teams/1519/zh_TW/)\n"
@@ -275,10 +275,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
#: https//support.torproject.org/faq/faq-3/
@@ -347,9 +347,8 @@ msgstr "基本上我們不建議在洋䓤路由使用 VPN ,除非您是個進
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
#: https//support.torproject.org/about/backdoor/
@@ -932,8 +931,8 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1138,14 +1137,14 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
@@ -1158,7 +1157,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
@@ -1293,9 +1292,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
#: https//support.torproject.org/tbb/tbb-10/
@@ -1474,9 +1472,8 @@ msgstr "它們需要單獨配置才能使用Tor。"
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
#: https//support.torproject.org/tbb/tbb-15/
@@ -1575,9 +1572,8 @@ msgstr "抱歉,目前還沒有正式支援在* BSD上運行洋蔥路由瀏覽
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
#: https//support.torproject.org/tbb/tbb-19/
@@ -1655,11 +1651,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
#: https//support.torproject.org/tbb/tbb-20/
@@ -1778,17 +1773,16 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1798,9 +1792,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-24/
@@ -1810,8 +1802,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
@@ -1821,9 +1813,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
@@ -1834,8 +1824,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-27/
@@ -1912,9 +1902,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
@@ -1952,9 +1940,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
@@ -2045,9 +2031,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-34/
@@ -2229,9 +2214,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
@@ -2247,10 +2231,9 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
#: https//support.torproject.org/tbb/tbb-41/
@@ -2288,9 +2271,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
@@ -2304,10 +2286,10 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
#: https//support.torproject.org/tbb/tbb-43/
@@ -2501,7 +2483,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -2512,7 +2494,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -3483,8 +3465,7 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/censorship/censorship-7/
@@ -3611,7 +3592,7 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
#: https//support.torproject.org/https/https-2/
@@ -5087,8 +5068,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
@@ -5119,12 +5100,12 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5144,7 +5125,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
@@ -5156,9 +5137,7 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
@@ -5317,8 +5296,8 @@ msgstr ""
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
#: https//support.torproject.org/misc/bug-or-feedback/
@@ -5548,7 +5527,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
+msgid "### app"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -5817,7 +5796,7 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
+msgid "### daemon"
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -6393,9 +6372,10 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
#: https//support.torproject.org/misc/glossary/
@@ -7320,11 +7300,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
#: https//support.torproject.org/misc/misc-12/
@@ -7424,8 +7403,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
#: https//support.torproject.org/misc/misc-2/
@@ -7472,11 +7451,10 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
#: https//support.torproject.org/misc/misc-3/
@@ -7506,9 +7484,8 @@ msgstr "我們不建議將Tor與BitTorrent一起使用。"
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
#: https//support.torproject.org/misc/misc-5/
@@ -7569,8 +7546,7 @@ msgstr ""
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
#: https//support.torproject.org/misc/misc-7/
@@ -7588,9 +7564,8 @@ msgstr ""
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
#: https//support.torproject.org/misc/misc-8/
diff --git a/contents.pot b/contents.pot
index 5c67e6b38..9b69dc913 100644
--- a/contents.pot
+++ b/contents.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-29 12:09+CET\n"
+"POT-Creation-Date: 2019-11-06 16:24+CET\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: en <LL(a)li.org>\n"
@@ -307,15 +307,15 @@ msgstr "The add-on itself could even be maliciously designed to spy on you."
#: https//support.torproject.org/tbb/tbb-14/
#: (content/tbb/tbb-14/contents+en.lrquestion.description)
msgid ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
msgstr ""
-"Tor Browser already comes installed with two add-ons — <mark><a "
-"href=\"https://www.eff.org/https-everywhere\">HTTPS Everywhere</a></mark> "
-"and <mark><a href=\"https://noscript.net/\">NoScript</a></mark> — and adding"
-" anything else could deanonymize you."
+"Tor Browser already comes installed with two add-ons — [HTTPS "
+"Everywhere](https://www.eff.org/https-everywhere) and "
+"[NoScript](https://noscript.net) — and adding anything else could "
+"deanonymize you."
#: https//support.torproject.org/faq/faq-3/
#: (content/faq/faq-3/contents+en.lrquestion.description)
@@ -401,13 +401,11 @@ msgstr ""
#: https//support.torproject.org/faq/faq-5/
#: (content/faq/faq-5/contents+en.lrquestion.description)
msgid ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
msgstr ""
-"You can find more detailed information about Tor + VPN at <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN\">our "
-"wiki</a></mark>."
+"You can find more detailed information about Tor + VPN at [our "
+"wiki](https://trac.torproject.org/projects/tor/wiki/doc/TorPlusVPN)."
#: https//support.torproject.org/about/backdoor/
#: (content/about/backdoor/contents+en.lrquestion.title)
@@ -1109,11 +1107,11 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
msgstr ""
-"For example, `torbrowser-install-win64-9.0_en-US.exe` is accompanied by "
-"`torbrowser-install-win64-9.0_en-US.exe.asc`."
+"For example, `torbrowser-install-win64-9.0.1_en-US.exe` is accompanied by "
+"`torbrowser-install-win64-9.0.1_en-US.exe.asc`."
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1356,19 +1354,19 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
msgstr ""
-"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0_en-"
-"US.exe.asc Downloads\torbrowser-install-win64-9.0_en-US.exe"
+"gpgv --keyring .\tor.keyring Downloads\torbrowser-install-win64-9.0.1_en-"
+"US.exe.asc Downloads\torbrowser-install-win64-9.0.1_en-US.exe"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0-osx64_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/TorBrowser-9.0.1-osx64_en-"
"US.dmg{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1381,10 +1379,10 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
msgstr ""
-"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0_en-"
+"gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux64-9.0.1_en-"
"US.tar.xz{.asc,}"
#: https//support.torproject.org/tbb/how-to-verify-signature/
@@ -1556,13 +1554,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-1/
#: (content/tbb/tbb-1/contents+en.lrquestion.description)
msgid ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
msgstr ""
-"If your issue is not listed, please file a <mark><a "
-"href=\"https://trac.torproject.org\">bug report</a></mark> about what you're"
-" experiencing."
+"If your issue is not listed, please file a [bug "
+"report](https://trac.torproject.org) about what you're experiencing."
#: https//support.torproject.org/tbb/tbb-10/
#: (content/tbb/tbb-10/contents+en.lrquestion.title)
@@ -1767,14 +1763,12 @@ msgstr "They need to be configured separately to use Tor."
#: (content/tbb/tbb-13/contents+en.lrquestion.description)
msgid ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
msgstr ""
"If you need to be sure that all traffic will go through the Tor network, "
-"take a look at the <mark><a href=\"https://tails.boum.org/\">Tails live "
-"operating system</a></mark> which you can start on almost any computer from "
-"a USB stick or a DVD."
+"take a look at the [Tails live operating system](https://tails.boum.org/) "
+"which you can start on almost any computer from a USB stick or a DVD."
#: https//support.torproject.org/tbb/tbb-15/
#: (content/tbb/tbb-15/contents+en.lrquestion.title)
@@ -1895,13 +1889,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-18/
#: (content/tbb/tbb-18/contents+en.lrquestion.description)
msgid ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
msgstr ""
-"There is something called the <mark><a "
-"href=\"https://www.torbsd.org/\">TorBSD project</a></mark>, but their Tor "
-"Browser is not officially supported."
+"There is something called the [TorBSD project](https://www.torbsd.org/), but"
+" their Tor Browser is not officially supported."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.title)
@@ -1990,17 +1982,15 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.description)
msgid ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
msgstr ""
-"For more information on how guard relays work, see this <mark><a "
-"href=\"https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
-"parameters\">blog post</a></mark> and <mark><a href=\"https://www-"
-"users.cs.umn.edu/~hoppernj/single_guard.pdf\">paper</a></mark> on entry "
-"guards."
+"For more information on how guard relays work, see this [blog "
+"post](https://blog.torproject.org/improving-tors-anonymity-changing-guard-"
+"parameters) and [paper](https://www-"
+"users.cs.umn.edu/~hoppernj/single_guard.pdf) on entry guards."
#: https//support.torproject.org/tbb/tbb-20/
#: (content/tbb/tbb-20/contents+en.lrquestion.title)
@@ -2148,24 +2138,22 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
msgstr ""
-"<mark><a href=\"https://duckduckgo.com/\">DuckDuckGo</a></mark> is the "
-"default search engine in Tor Browser."
+"[DuckDuckGo](https://duckduckgo.com/) is the default search engine in Tor "
+"Browser."
#: https//support.torproject.org/tbb/tbb-23/
#: (content/tbb/tbb-23/contents+en.lrquestion.description)
msgid ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
msgstr ""
"DuckDuckGo does not track its users nor does it store any data about user "
-"searches. Learn more about <mark><a "
-"href=\"https://duckduckgo.com/privacy\">DuckDuckGo privacy "
-"policy</a></mark>."
+"searches. Learn more about [DuckDuckGo privacy "
+"policy](https://duckduckgo.com/privacy)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.title)
@@ -2174,12 +2162,8 @@ msgstr "I'm having a problem with DuckDuckGo."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
-msgstr ""
-"Please see the <mark><a href=\"https://duck.co/help\">DuckDuckGo support "
-"portal</a></mark>."
+msgid "Please see the [DuckDuckGo support portal](https://duck.co/help)."
+msgstr "Please see the [DuckDuckGo support portal](https://duck.co/help)."
#: https//support.torproject.org/tbb/tbb-24/
#: (content/tbb/tbb-24/contents+en.lrquestion.description)
@@ -2188,11 +2172,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
msgstr ""
-"If you believe this is a Tor Browser issue, please report it on our <mark><a"
-" href=\"https://trac.torproject.org/\">bug tracker</a></mark>."
+"If you believe this is a Tor Browser issue, please report it on our [bug "
+"tracker](https://trac.torproject.org/)."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.title)
@@ -2201,12 +2185,8 @@ msgstr "I'm having a problem with NoScript."
#: https//support.torproject.org/tbb/tbb-25/
#: (content/tbb/tbb-25/contents+en.lrquestion.description)
-msgid ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
-msgstr ""
-"Please see the <mark><a href=\"https://noscript.net/faq\">NoScript "
-"FAQ</a></mark>."
+msgid "Please see the [NoScript FAQ](https://noscript.net/faq)."
+msgstr "Please see the [NoScript FAQ](https://noscript.net/faq)."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.title)
@@ -2216,11 +2196,11 @@ msgstr "I'm having a problem with HTTPS Everywhere."
#: https//support.torproject.org/tbb/tbb-26/
#: (content/tbb/tbb-26/contents+en.lrquestion.description)
msgid ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
msgstr ""
-"Please see the <mark><a href=\"https://www.eff.org/https-"
-"everywhere/faq\">HTTPS Everywhere FAQ</a></mark>."
+"Please see the [HTTPS Everywhere FAQ](https://www.eff.org/https-"
+"everywhere/faq)."
#: https//support.torproject.org/tbb/tbb-27/
#: (content/tbb/tbb-27/contents+en.lrquestion.title)
@@ -2313,12 +2293,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/menu-new-identity.png\" alt=\"Tor "
-"Browser Menu\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
@@ -2363,12 +2339,8 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-29/
#: (content/tbb/tbb-29/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/new-circuit-display.png\" alt=\"New "
-"Circuit for this Site\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/tbb/tbb-30/
#: (content/tbb/tbb-30/contents+en.lrquestion.title)
@@ -2478,13 +2450,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-33/
#: (content/tbb/tbb-33/contents+en.lrquestion.description)
msgid ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
msgstr ""
-"If you'd like to become a relay, please see our <mark><a "
-"href=\"https://trac.torproject.org/projects/tor/wiki/TorRelayGuide\">Tor "
-"Relay Guide</a></mark>."
+"If you'd like to become a relay, please see our [Tor Relay "
+"Guide](https://trac.torproject.org/projects/tor/wiki/TorRelayGuide)."
#: https//support.torproject.org/tbb/tbb-34/
#: (content/tbb/tbb-34/contents+en.lrquestion.title)
@@ -2711,13 +2681,11 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-4/
#: (content/tbb/tbb-4/contents+en.lrquestion.description)
msgid ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
msgstr ""
-"<mark><a "
-"href=\"https://www.torproject.org/projects/torbrowser/design/\">Learn more "
-"about the design of Tor Browser</a></mark>."
+"[Learn more about the design of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/)."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.title)
@@ -2732,15 +2700,13 @@ msgstr "In Tor Browser, every new domain gets its own circuit."
#: https//support.torproject.org/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.description)
msgid ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
msgstr ""
-"<mark><a href=\"https://www.torproject.org/projects/torbrowser/design"
-"/#identifier-linkability\">The Design and Implementation of Tor "
-"Browser</a></mark> document further explains the thinking behind this "
-"design."
+"[The Design and Implementation of Tor "
+"Browser](https://www.torproject.org/projects/torbrowser/design/#identifier-"
+"linkability) document further explains the thinking behind this design."
#: https//support.torproject.org/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -2784,13 +2750,11 @@ msgstr "Why does my Tor Browser say something about Firefox not working?"
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"Tor Browser is built using <mark><a href=\"https://www.mozilla.org/en-"
-"US/firefox/organizations/\">Firefox ESR</a></mark>, so errors regarding "
-"Firefox may occur."
+"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), so errors regarding Firefox may occur."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2806,15 +2770,15 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
msgid ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
msgstr ""
-"If you are running an anti-virus, please see <mark><a "
-"href=\"http://support.torproject.org/#tbb-10\">My antivirus/malware "
-"protection is blocking me from accessing Tor Browser</a></mark>, it is "
-"common for anti-virus / anti-malware software to cause this type of issue."
+"If you are running an anti-virus, please see [My antivirus/malware "
+"protection is blocking me from accessing Tor "
+"Browser](http://support.torproject.org/#tbb-10), it is common for anti-virus"
+" / anti-malware software to cause this type of issue."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
@@ -3067,7 +3031,7 @@ msgid ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -3077,7 +3041,7 @@ msgstr ""
"You can set Proxy IP address, port, and authentication information in [Tor "
"Browser's Network Settings](https://tb-manual.torproject.org/running-tor-"
"browser/). If you're using Tor another way, check out the HTTPProxy and "
-"HTTPSProxy config options in the [man "
+"HTTPSProxy config options in the [manual "
"page](https://2019.www.torproject.org/docs/tor-manual.html.en), and modify "
"your torrc file accordingly. You will need an HTTP proxy for doing GET "
"requests to fetch the Tor directory, and you will need an HTTPS proxy for "
@@ -3087,12 +3051,12 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
msgid ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
-"Also read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
+"Also, read up on the HTTPProxyAuthenticator and HTTPSProxyAuthenticator "
"options if your proxy requires auth. We only support basic auth currently, "
"but if you need NTLM authentication, you may find [this post in the "
"archives](http://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
@@ -4270,12 +4234,10 @@ msgstr ""
#: (content/onionservices/onionservices-3/contents+en.lrquestion.description)
msgid ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
msgstr ""
"You can also ensure that you're able to access other onion services by "
-"connecting to <a href=\"http://3g2upl4pq6kufc4m.onion\">DuckDuckGo's onion "
-"service</a>."
+"connecting to [DuckDuckGo's onion service](http://3g2upl4pq6kufc4m.onion)."
#: https//support.torproject.org/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -4431,10 +4393,10 @@ msgstr ""
#: (content/https/https-2/contents+en.lrquestion.description)
msgid ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
msgstr ""
"You can [read more about HTTPS here](https://tb-manual.torproject.org"
-"/secure-connections/)"
+"/secure-connections/)."
#: https//support.torproject.org/https/https-2/
#: (content/https/https-2/contents+en.lrquestion.description)
@@ -6288,11 +6250,11 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
msgid ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
msgstr ""
-"For example, the DuckDuckGo onion is <a "
-"href=\"http://3g2upl4pq6kufc4m.onion\">https://3g2upl4pq6kufc4m.onion</a>."
+"For example, the DuckDuckGo onion is "
+"[https://3g2upl4pq6kufc4m.onion](https://3g2upl4pq6kufc4m.onion)."
#: https//support.torproject.org/onionservices/onionservices-1/
#: (content/onionservices/onionservices-1/contents+en.lrquestion.description)
@@ -6326,20 +6288,20 @@ msgstr ""
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
msgid ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
msgstr ""
"Onion services are also relied on for metadata-free chat and file sharing, "
-"safer interaction between journalists and their sources like with <mark><a "
-"href=\"https://securedrop.org/\">SecureDrop</a></mark> or <mark><a "
-"href=\"https://onionshare.org/\">OnionShare</a></mark>, safer software "
-"updates, and more secure ways to reach popular websites like <mark><a "
-"href=\"https://www.facebook.com/notes/protect-the-graph/making-connections-"
-"to-facebook-more-secure/1526085754298237/\">Facebook</a></mark>."
+"safer interaction between journalists and their sources like with "
+"[SecureDrop](https://securedrop.org/) or "
+"[OnionShare](https://onionshare.org/), safer software updates, and more "
+"secure ways to reach popular websites like "
+"[Facebook](https://www.facebook.com/notes/protect-the-graph/making-"
+"connections-to-facebook-more-secure/1526085754298237/)."
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6363,8 +6325,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
-msgstr "<img class=\"\" src=\"/static/images/onion-website.png\" alt=\"Onion icon\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
@@ -6377,12 +6339,8 @@ msgstr ""
#: https//support.torproject.org/onionservices/onionservices-2/
#: (content/onionservices/onionservices-2/contents+en.lrquestion.description)
-msgid ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/padlock-onion.png\" alt=\"Green onion "
-"with a padlock\">"
+msgid ""
+msgstr ""
#: https//support.torproject.org/onionservices/onionservices-4/
#: (content/onionservices/onionservices-4/contents+en.lrquestion.title)
@@ -6562,13 +6520,13 @@ msgstr "#### Trac"
msgid ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
msgstr ""
"You can file a ticket at "
"[https://trac.torproject.org](https://trac.torproject.org). We track all Tor"
-" Browser 8 related issues with the ff60-esr keyword. Tickets related to our "
-"website should be added with the component \"Webpages/Website.\""
+" Browser 9 related issues with the tbb-9.0-issues keyword. Tickets related "
+"to our website should be added with the component \"Webpages/Website.\""
#: https//support.torproject.org/misc/bug-or-feedback/
#: (content/misc/bug-or-feedback/contents+en.lrquestion.description)
@@ -6847,8 +6805,8 @@ msgstr ""
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### App"
-msgstr "### App"
+msgid "### app"
+msgstr "### app"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7181,8 +7139,8 @@ msgstr "## D"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
-msgid "### Daemon"
-msgstr "### Daemon"
+msgid "### daemon"
+msgstr "### daemon"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -7897,13 +7855,15 @@ msgstr "### OONI"
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
msgid ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
msgstr ""
-"OONI stands for \"Open Observatory of Network Interference\", it is a global"
-" observation network for detecting [censorship](#network-censorship), "
-"surveillance and [traffic](#traffic) manipulation on the internet."
+"OONI stands for \"[Open Observatory of Network "
+"Interference](https://ooni.io/)\", it is a global observation network for "
+"detecting [censorship](#network-censorship), surveillance and "
+"[traffic](#traffic) manipulation on the internet."
#: https//support.torproject.org/misc/glossary/
#: (content/misc/glossary/contents+en.lrquestion.description)
@@ -9011,17 +8971,15 @@ msgstr ""
#: https//support.torproject.org/misc/misc-11/
#: (content/misc/misc-11/contents+en.lrquestion.description)
msgid ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
msgstr ""
-"Also, using paths longer than 3 could harm anonymity, first because it "
-"makes<mark><a href=\"https://www.freehaven.net/anonbib/#ccs07-doa\">denial "
-"of security</a></mark> attacks easier, and second because it could act as an"
-" identifier if only a small number of users have the same path length as "
-"you."
+"Also, using paths longer than 3 could harm anonymity, first because it makes"
+" [denial of security](https://www.freehaven.net/anonbib/#ccs07-doa) attacks "
+"easier, and second because it could act as an identifier if only a small "
+"number of users have the same path length as you."
#: https//support.torproject.org/misc/misc-12/
#: (content/misc/misc-12/contents+en.lrquestion.title)
@@ -9144,11 +9102,11 @@ msgstr "Thank you for your support!"
#: https//support.torproject.org/misc/misc-15/
#: (content/misc/misc-15/contents+en.lrquestion.description)
msgid ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
msgstr ""
-"You can find more information about donating on our <mark><a "
-"href=\"https://donate.torproject.org/donor-faq\">donor FAQ</a></mark>."
+"You can find more information about donating on our [donor "
+"FAQ](https://donate.torproject.org/donor-faq)."
#: https//support.torproject.org/misc/misc-2/
#: (content/misc/misc-2/contents+en.lrquestion.title)
@@ -9206,17 +9164,15 @@ msgstr ""
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
msgid ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
msgstr ""
-"Check out a list of all <mark><a "
-"href=\"https://www.torproject.org/about/sponsors.html.en\">our "
-"sponsors</a></mark> and a series of <mark><a "
-"href=\"https://blog.torproject.org/category/tags/form-990\">blog "
-"posts</a></mark> on our financial reports."
+"Check out a list of all [our "
+"sponsors](https://www.torproject.org/about/sponsors.html.en) and a series of"
+" [blog posts](https://blog.torproject.org/category/tags/form-990) on our "
+"financial reports."
#: https//support.torproject.org/misc/misc-3/
#: (content/misc/misc-3/contents+en.lrquestion.description)
@@ -9249,13 +9205,11 @@ msgstr "We do not recommend using Tor with BitTorrent."
#: https//support.torproject.org/misc/misc-4/
#: (content/misc/misc-4/contents+en.lrquestion.description)
msgid ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
-"For further details, please see our <mark><a "
-"href=\"https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea\">blog"
-" post on the subject</a></mark>."
+"For further details, please see our [blog post on the "
+"subject](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
#: https//support.torproject.org/misc/misc-5/
#: (content/misc/misc-5/contents+en.lrquestion.title)
@@ -9329,12 +9283,10 @@ msgstr "Tor doesn't keep any logs that could identify a particular user."
#: (content/misc/misc-6/contents+en.lrquestion.description)
msgid ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
msgstr ""
"We do take some safe measurements of how the network functions, which you "
-"can check out at <mark><a href=\"https://metrics.torproject.org/\">Tor "
-"Metrics</a></mark>."
+"can check out at [Tor Metrics](https://metrics.torproject.org/)."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.title)
@@ -9353,13 +9305,11 @@ msgstr "No, we don't provide any online services."
#: https//support.torproject.org/misc/misc-7/
#: (content/misc/misc-7/contents+en.lrquestion.description)
msgid ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
msgstr ""
-"A list of all of our software projects can be found on our <mark><a "
-"href=\"https://www.torproject.org/projects/projects.html.en\">projects "
-"page</a></mark>."
+"A list of all of our software projects can be found on our [projects "
+"page](https://www.torproject.org/projects/projects.html.en)."
#: https//support.torproject.org/misc/misc-8/
#: (content/misc/misc-8/contents+en.lrquestion.title)
1
0
commit 65013a6924e5b97987819d93b4b8dc1acbee3c1e
Author: David Goulet <dgoulet(a)torproject.org>
Date: Wed Nov 6 10:27:34 2019 -0500
changes: Add file for ticket #31371
Signed-off-by: David Goulet <dgoulet(a)torproject.org>
---
changes/ticket31371 | 3 +++
1 file changed, 3 insertions(+)
diff --git a/changes/ticket31371 b/changes/ticket31371
new file mode 100644
index 000000000..25457da81
--- /dev/null
+++ b/changes/ticket31371
@@ -0,0 +1,3 @@
+ o Minor feature (heartbeat, onion service):
+ - Add the DoS INTRODUCE2 defenses counter to the heartbeat DoS message.
+ Closes ticket 31371.
1
0