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
April 2020
- 25 participants
- 2156 discussions

[exonerator/master] Set default locale US and default time zone UTC.
by karsten@torproject.org 12 Apr '20
by karsten@torproject.org 12 Apr '20
12 Apr '20
commit 53e94d8cd9fc889a62c0cbb39c247e98980323a4
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Sun Apr 12 16:24:31 2020 +0200
Set default locale US and default time zone UTC.
Part of #33655.
---
CHANGELOG.md | 2 ++
.../torproject/metrics/exonerator/ExoneraTorDatabaseImporter.java | 4 ++++
src/main/java/org/torproject/metrics/exonerator/QueryServlet.java | 2 --
src/main/java/org/torproject/metrics/exonerator/ServerMain.java | 5 +++++
4 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d22bc6f..f6cc649 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@
* Minor changes
- Improve logging of the database importer.
- Simplify logging configuration.
+ - Set default locale `US` and default time zone `UTC` at the
+ beginning of the execution.
# Changes in version 4.3.0 - 2020-01-15
diff --git a/src/main/java/org/torproject/metrics/exonerator/ExoneraTorDatabaseImporter.java b/src/main/java/org/torproject/metrics/exonerator/ExoneraTorDatabaseImporter.java
index b4d68e5..6a12d15 100644
--- a/src/main/java/org/torproject/metrics/exonerator/ExoneraTorDatabaseImporter.java
+++ b/src/main/java/org/torproject/metrics/exonerator/ExoneraTorDatabaseImporter.java
@@ -39,9 +39,11 @@ import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.util.HashSet;
+import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.SortedMap;
+import java.util.TimeZone;
import java.util.TreeMap;
/* Import Tor descriptors into the ExoneraTor database. */
@@ -52,6 +54,8 @@ public class ExoneraTorDatabaseImporter {
/** Main function controlling the parsing process. */
public static void main(String[] args) {
+ Locale.setDefault(Locale.US);
+ TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
logger.info("Starting ExoneraTor database importer.");
readConfiguration();
openDatabaseConnection();
diff --git a/src/main/java/org/torproject/metrics/exonerator/QueryServlet.java b/src/main/java/org/torproject/metrics/exonerator/QueryServlet.java
index dda63da..2b06ed2 100644
--- a/src/main/java/org/torproject/metrics/exonerator/QueryServlet.java
+++ b/src/main/java/org/torproject/metrics/exonerator/QueryServlet.java
@@ -29,7 +29,6 @@ import java.util.Map;
import java.util.Set;
import java.util.SortedMap;
import java.util.SortedSet;
-import java.util.TimeZone;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.regex.Pattern;
@@ -224,7 +223,6 @@ public class QueryServlet extends HttpServlet {
String passedTimestampParameter) {
LocalDate timestamp = null;
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
- dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
dateFormat.setLenient(false);
if (passedTimestampParameter != null
&& passedTimestampParameter.length() > 0) {
diff --git a/src/main/java/org/torproject/metrics/exonerator/ServerMain.java b/src/main/java/org/torproject/metrics/exonerator/ServerMain.java
index 1819a3c..b8ff428 100644
--- a/src/main/java/org/torproject/metrics/exonerator/ServerMain.java
+++ b/src/main/java/org/torproject/metrics/exonerator/ServerMain.java
@@ -9,6 +9,9 @@ import org.eclipse.jetty.xml.XmlConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
+import java.util.Locale;
+import java.util.TimeZone;
+
public class ServerMain {
private static final Logger logger
@@ -16,6 +19,8 @@ public class ServerMain {
/** Starts the web server listening for incoming client connections. */
public static void main(String[] args) {
+ Locale.setDefault(Locale.US);
+ TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
try {
Resource jettyXml = Resource.newSystemResource("jetty.xml");
logger.info("Reading configuration from '{}'.", jettyXml);
1
0

[translation/bridgedb_completed] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed
by translation@torproject.org 12 Apr '20
by translation@torproject.org 12 Apr '20
12 Apr '20
commit 724a3198e22f1a5f73fb87ccec450b810647e024
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Apr 12 14:15:22 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed
---
pt_BR/LC_MESSAGES/bridgedb.po | 159 +++++++++++++++++-------------------------
1 file changed, 65 insertions(+), 94 deletions(-)
diff --git a/pt_BR/LC_MESSAGES/bridgedb.po b/pt_BR/LC_MESSAGES/bridgedb.po
index 443f546af2..1f09267446 100644
--- a/pt_BR/LC_MESSAGES/bridgedb.po
+++ b/pt_BR/LC_MESSAGES/bridgedb.po
@@ -3,7 +3,7 @@
# This file is distributed under the same license as the bridgedb project.
#
# Translators:
-# Communia <ameaneantie(a)riseup.net>, 2013-2017
+# Communia <ameaneantie(a)riseup.net>, 2013-2017,2020
# André Almeida <andrefalmeida(a)protonmail.com>, 2018
# anominino anomino <anominino(a)riseup.net>, 2018
# C. E., 2020
@@ -28,8 +28,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2020-03-24 10:22-0700\n"
-"PO-Revision-Date: 2020-03-29 19:55+0000\n"
+"POT-Creation-Date: 2020-04-07 10:14-0700\n"
+"PO-Revision-Date: 2020-04-12 14:07+0000\n"
"Last-Translator: Igor Bk 13 <igorgcoleto(a)gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -87,6 +87,10 @@ msgstr "Código Fonte:"
msgid "Changelog"
msgstr "Registro de alterações"
+#: bridgedb/distributors/https/templates/base.html:102
+msgid "Public Keys"
+msgstr "Chaves Públicas"
+
#: bridgedb/distributors/https/templates/bridges.html:35
msgid "Select All"
msgstr "Selecionar tudo"
@@ -104,7 +108,7 @@ msgstr "Código QR para as suas pontes de conexão"
#. for Italian, you might translate this into "Mama mia!",
#. or for French: "Sacrebleu!". :)
#: bridgedb/distributors/https/templates/bridges.html:67
-#: bridgedb/distributors/https/templates/bridges.html:125
+#: bridgedb/distributors/https/templates/bridges.html:119
msgid "Uh oh, spaghettios!"
msgstr "Ai, caramba!"
@@ -118,12 +122,12 @@ msgid ""
" your bridge lines onto mobile and other devices."
msgstr "Este Código QR contém as suas pontes de conexão. Escaneie com um leitor de Código QR para copiar as pontes de conexão para dispositivos móveis e outros aparelhos."
-#: bridgedb/distributors/https/templates/bridges.html:131
+#: bridgedb/distributors/https/templates/bridges.html:125
msgid "There currently aren't any bridges available..."
msgstr "Atualmente não há nenhuma ponte disponível..."
-#: bridgedb/distributors/https/templates/bridges.html:133
-#: bridgedb/distributors/https/templates/bridges.html:137
+#: bridgedb/distributors/https/templates/bridges.html:127
+#: bridgedb/distributors/https/templates/bridges.html:131
#, python-format
msgid ""
" Perhaps you should try %s going back %s and choosing a different bridge "
@@ -199,64 +203,32 @@ msgstr "%sS%sim!"
msgid "%sG%set Bridges"
msgstr "%sObter%s Bridges"
-#: bridgedb/strings.py:43
-msgid "[This is an automated message; please do not reply.]"
-msgstr "[Esta é uma mensagem automática; por favor, não responda.]"
+#: bridgedb/strings.py:42
+msgid "[This is an automated email.]"
+msgstr "[Este é um email automático.]"
-#: bridgedb/strings.py:45
+#: bridgedb/strings.py:44
msgid "Here are your bridges:"
msgstr "Aqui estão suas pontes:"
-#: bridgedb/strings.py:47
+#: bridgedb/strings.py:46
#, python-format
msgid ""
"You have exceeded the rate limit. Please slow down! The minimum time between\n"
"emails is %s hours. All further emails during this time period will be ignored."
msgstr "Você excedeu o quantidade limite. Mais devagar, por favor! O tempo mínimo entre\ne-mails é de %s horas. Todos os outros e-mails serão ignorados durante este período."
-#: bridgedb/strings.py:50
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr "COMANDOS: (combine COMANDOS para especificar múltiplas opções simultaneamente)"
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: bridgedb/strings.py:53
-msgid "Welcome to BridgeDB!"
-msgstr "Bem vindo ao BridgeDB!"
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: bridgedb/strings.py:55
-msgid "Currently supported transport TYPEs:"
-msgstr "TIPOS de transporte compatíveis no momento:"
-
-#: bridgedb/strings.py:56
-#, python-format
-msgid "Hey, %s!"
-msgstr "Olá, %s!"
-
-#: bridgedb/strings.py:57
-msgid "Hello, friend!"
-msgstr "Olá, amigo!"
-
-#: bridgedb/distributors/https/templates/base.html:102 bridgedb/strings.py:58
-msgid "Public Keys"
-msgstr "Chaves Públicas"
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: bridgedb/strings.py:62
-#, python-format
+#: bridgedb/strings.py:49
msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr "Este e-mail foi gerado com arco-íris, unicórnios e brilho, para %s, em %s, às %s."
+"If these bridges are not what you need, reply to this email with one of\n"
+"the following commands in the message body:"
+msgstr ""
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
#. TRANSLATORS: Please DO NOT translate "Tor".
#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: bridgedb/strings.py:72
+#: bridgedb/strings.py:59
#, python-format
msgid ""
"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
@@ -267,7 +239,7 @@ msgid ""
msgstr ""
#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: bridgedb/strings.py:79
+#: bridgedb/strings.py:66
msgid ""
"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
"Transports aren't IPv6 compatible.\n"
@@ -279,7 +251,7 @@ msgstr ""
#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
#. which do not have Pluggable Transports, and only speak the regular,
#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: bridgedb/strings.py:88
+#: bridgedb/strings.py:75
#, python-format
msgid ""
"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
@@ -288,21 +260,21 @@ msgid ""
"\n"
msgstr ""
-#: bridgedb/strings.py:101 bridgedb/test/test_https.py:356
+#: bridgedb/strings.py:87 bridgedb/test/test_https.py:356
msgid "What are bridges?"
msgstr "O que são pontes?"
-#: bridgedb/strings.py:102
+#: bridgedb/strings.py:88
#, python-format
msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
msgstr "%s Pontes %s são relés Tor que ajudam a driblar a censura."
-#: bridgedb/strings.py:107
+#: bridgedb/strings.py:93
msgid "I need an alternative way of getting bridges!"
msgstr "Preciso de um outro modo de obter pontes!"
#. TRANSLATORS: Please DO NOT translate "get transport obfs4".
-#: bridgedb/strings.py:109
+#: bridgedb/strings.py:95
#, python-format
msgid ""
"Another way to get bridges is to send an email to %s. Leave the email subject\n"
@@ -311,33 +283,33 @@ msgid ""
"providers: %s or %s."
msgstr ""
-#: bridgedb/strings.py:117
+#: bridgedb/strings.py:103
msgid "My bridges don't work! I need help!"
msgstr "Minhas pontes não funcionam! Preciso de ajuda!"
#. TRANSLATORS: Please DO NOT translate "Tor Browser".
#. TRANSLATORS: The two '%s' are substituted with "Tor Browser Manual" and
#. "Support Portal", respectively.
-#: bridgedb/strings.py:121
+#: bridgedb/strings.py:107
#, python-format
msgid ""
"If your Tor Browser cannot connect, please take a look at the %s and our %s."
msgstr ""
-#: bridgedb/strings.py:125
+#: bridgedb/strings.py:111
msgid "Here are your bridge lines:"
msgstr "Aqui estão as suas pontes de conexão:"
-#: bridgedb/strings.py:126
+#: bridgedb/strings.py:112
msgid "Get Bridges!"
msgstr "Obtenha Pontes!"
-#: bridgedb/strings.py:130
+#: bridgedb/strings.py:116
msgid "Bridge distribution mechanisms"
msgstr ""
#. TRANSLATORS: Please DO NOT translate "BridgeDB", "HTTPS", and "Moat".
-#: bridgedb/strings.py:132
+#: bridgedb/strings.py:118
#, python-format
msgid ""
"BridgeDB implements four mechanisms to distribute bridges: \"HTTPS\", \"Moat\",\n"
@@ -347,7 +319,7 @@ msgid ""
"mechanisms is."
msgstr ""
-#: bridgedb/strings.py:138
+#: bridgedb/strings.py:124
#, python-format
msgid ""
"The \"HTTPS\" distribution mechanism hands out bridges over this website. To get\n"
@@ -355,7 +327,7 @@ msgid ""
"solve the subsequent CAPTCHA."
msgstr ""
-#: bridgedb/strings.py:142
+#: bridgedb/strings.py:128
#, python-format
msgid ""
"The \"Moat\" distribution mechanism is part of Tor Browser, allowing users to\n"
@@ -365,7 +337,7 @@ msgid ""
"bridges."
msgstr ""
-#: bridgedb/strings.py:148
+#: bridgedb/strings.py:134
#, python-format
msgid ""
"Users can request bridges from the \"Email\" distribution mechanism by sending an\n"
@@ -373,11 +345,11 @@ msgid ""
"email body."
msgstr ""
-#: bridgedb/strings.py:152
+#: bridgedb/strings.py:138
msgid "Reserved"
msgstr ""
-#: bridgedb/strings.py:153
+#: bridgedb/strings.py:139
#, python-format
msgid ""
"BridgeDB maintains a small number of bridges that are not distributed\n"
@@ -388,11 +360,11 @@ msgid ""
"called \"Unallocated\" in %sbridge pool assignment%s files."
msgstr ""
-#: bridgedb/strings.py:160
+#: bridgedb/strings.py:146
msgid "None"
msgstr ""
-#: bridgedb/strings.py:161
+#: bridgedb/strings.py:147
msgid ""
"Bridges whose distribution mechanism is \"None\" are not distributed by BridgeDB.\n"
"It is the bridge operator's responsibility to distribute their bridges to\n"
@@ -401,33 +373,33 @@ msgid ""
"it will then change to the bridge's actual distribution mechanism.\n"
msgstr ""
-#: bridgedb/strings.py:171
+#: bridgedb/strings.py:157
msgid "Please select options for bridge type:"
msgstr "Por favor, selecione as opções de tipos de pontes:"
-#: bridgedb/strings.py:172
+#: bridgedb/strings.py:158
msgid "Do you need IPv6 addresses?"
msgstr "Você precisa de endereços IPv6?"
-#: bridgedb/strings.py:173
+#: bridgedb/strings.py:159
#, python-format
msgid "Do you need a %s?"
msgstr "Você precisa de %s?"
-#: bridgedb/strings.py:177
+#: bridgedb/strings.py:163
msgid "Your browser is not displaying images properly."
msgstr "Seu navegador não está mostrando as imagens corretamente."
-#: bridgedb/strings.py:178
+#: bridgedb/strings.py:164
msgid "Enter the characters from the image above..."
msgstr "Digite os caracteres da imagem acima..."
-#: bridgedb/strings.py:182
+#: bridgedb/strings.py:168
msgid "How to start using your bridges"
msgstr "Como começar a usar as suas pontes"
#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: bridgedb/strings.py:184
+#: bridgedb/strings.py:170
#, python-format
msgid ""
" First, you need to %sdownload Tor Browser%s. Our Tor Browser User\n"
@@ -436,28 +408,27 @@ msgid ""
" are using Android, %sclick here%s."
msgstr ""
-#: bridgedb/strings.py:192
-msgid "Displays this message."
-msgstr "Mostrar essa mensagem."
+#: bridgedb/strings.py:175
+msgid ""
+"Add these bridges to your Tor Browser by opening your browser\n"
+"preferences, clicking on \"Tor\", and then adding them to the \"Provide a\n"
+"bridge\" field."
+msgstr ""
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: bridgedb/strings.py:196
-msgid "Request vanilla bridges."
-msgstr "Solicitar pontes simples."
+#: bridgedb/strings.py:182
+msgid "(Request unobfuscated Tor bridges.)"
+msgstr ""
-#: bridgedb/strings.py:197
-msgid "Request IPv6 bridges."
-msgstr "Solicitar pontes IPv6."
+#: bridgedb/strings.py:183
+msgid "(Request IPv6 bridges.)"
+msgstr ""
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: bridgedb/strings.py:199
-msgid "Request a Pluggable Transport by TYPE."
-msgstr "Solicitar um Transportador Plugável por TIPO."
+#: bridgedb/strings.py:184
+msgid "(Request obfs4 obfuscated bridges.)"
+msgstr ""
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: bridgedb/strings.py:202
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr "Obter uma cópia da chave pública GnuPG do BridgeDB."
+#: bridgedb/strings.py:187
+msgid "(Get a copy of BridgeDB's public GnuPG key.)"
+msgstr ""
1
0

[translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
by translation@torproject.org 12 Apr '20
by translation@torproject.org 12 Apr '20
12 Apr '20
commit 3e4370134ea467c34be8e34d2c315f0bdcbb482d
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Apr 12 14:15:15 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
---
pt_BR/LC_MESSAGES/bridgedb.po | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/pt_BR/LC_MESSAGES/bridgedb.po b/pt_BR/LC_MESSAGES/bridgedb.po
index 10252906d2..f24148542d 100644
--- a/pt_BR/LC_MESSAGES/bridgedb.po
+++ b/pt_BR/LC_MESSAGES/bridgedb.po
@@ -29,7 +29,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2020-04-07 10:14-0700\n"
-"PO-Revision-Date: 2020-04-12 13:43+0000\n"
+"PO-Revision-Date: 2020-04-12 14:07+0000\n"
"Last-Translator: Igor Bk 13 <igorgcoleto(a)gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -413,22 +413,22 @@ msgid ""
"Add these bridges to your Tor Browser by opening your browser\n"
"preferences, clicking on \"Tor\", and then adding them to the \"Provide a\n"
"bridge\" field."
-msgstr ""
+msgstr "Adicione estas pontes para o seu Navegador Tor abrindo o as preferências do \nseu navegador, clicando em \"Tor\" e então adicionando elas no campo \n\"Forneça uma ponte\"."
#: bridgedb/strings.py:182
msgid "(Request unobfuscated Tor bridges.)"
-msgstr ""
+msgstr "(Solicitar pontes não ofuscadas do Tor "
#: bridgedb/strings.py:183
msgid "(Request IPv6 bridges.)"
-msgstr ""
+msgstr "(Solicitar pontes IPv6.)"
#: bridgedb/strings.py:184
msgid "(Request obfs4 obfuscated bridges.)"
-msgstr ""
+msgstr "(Solicitar pontes obfs4 ofuscadas.)"
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "GnuPG".
#: bridgedb/strings.py:187
msgid "(Get a copy of BridgeDB's public GnuPG key.)"
-msgstr ""
+msgstr "Obter uma cópia da chave pública GnuPG do BridgeDB."
1
0

[translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
by translation@torproject.org 12 Apr '20
by translation@torproject.org 12 Apr '20
12 Apr '20
commit 5a503cbe039aea76198fd49d4e061087b5228888
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Apr 12 13:46:31 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
---
pt_BR/LC_MESSAGES/bridgedb.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pt_BR/LC_MESSAGES/bridgedb.po b/pt_BR/LC_MESSAGES/bridgedb.po
index 99fc90b738..10252906d2 100644
--- a/pt_BR/LC_MESSAGES/bridgedb.po
+++ b/pt_BR/LC_MESSAGES/bridgedb.po
@@ -29,8 +29,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2020-04-07 10:14-0700\n"
-"PO-Revision-Date: 2020-04-10 20:57+0000\n"
-"Last-Translator: Communia <ameaneantie(a)riseup.net>\n"
+"PO-Revision-Date: 2020-04-12 13:43+0000\n"
+"Last-Translator: Igor Bk 13 <igorgcoleto(a)gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -222,7 +222,7 @@ msgstr "Você excedeu o quantidade limite. Mais devagar, por favor! O tempo mín
msgid ""
"If these bridges are not what you need, reply to this email with one of\n"
"the following commands in the message body:"
-msgstr ""
+msgstr "Se essas pontes não são o que você precisa, responda para este email com um dos\nseguintes comandos no corpo da mensagem:"
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
1
0

[metrics-web/master] Estimate bridge users by country based on requests.
by karsten@torproject.org 12 Apr '20
by karsten@torproject.org 12 Apr '20
12 Apr '20
commit 999874057e462a99885e77a380e93bf0b23a3e1d
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Wed Mar 25 17:28:54 2020 +0100
Estimate bridge users by country based on requests.
Estimate bridge users by country based on requests by country, if
available, to get more accurate numbers than those obtained from
unique IP address counts.
Fixes #18167.
---
CHANGELOG.md | 3 +++
.../org/torproject/metrics/stats/clients/Main.java | 7 +++++--
src/main/resources/web/jsps/reproducible-metrics.jsp | 19 ++++++++++++-------
3 files changed, 20 insertions(+), 9 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa77766..817aafa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,9 @@
- Estimate relay users by country based on responses to directory
requests to reduce the overall effect of binning and to make
relay and bridge user estimates more comparable.
+ - Estimate bridge users by country based on requests by country, if
+ available, to get more accurate numbers than those obtained from
+ unique IP address counts.
* Minor changes
- Make Jetty host configurable.
diff --git a/src/main/java/org/torproject/metrics/stats/clients/Main.java b/src/main/java/org/torproject/metrics/stats/clients/Main.java
index 9dc7d8c..f26250d 100644
--- a/src/main/java/org/torproject/metrics/stats/clients/Main.java
+++ b/src/main/java/org/torproject/metrics/stats/clients/Main.java
@@ -260,6 +260,7 @@ public class Main {
parseBridgeDirreqV3Resp(fingerprint, publishedMillis,
dirreqStatsEndMillis, dirreqStatsIntervalLengthMillis,
descriptor.getDirreqV3Resp(),
+ descriptor.getDirreqV3Reqs(),
descriptor.getBridgeIps(),
descriptor.getBridgeIpTransports(),
descriptor.getBridgeIpVersions());
@@ -272,6 +273,7 @@ public class Main {
long publishedMillis, long dirreqStatsEndMillis,
long dirreqStatsIntervalLengthMillis,
SortedMap<String, Integer> responses,
+ SortedMap<String, Integer> requests,
SortedMap<String, Integer> bridgeIps,
SortedMap<String, Integer> bridgeIpTransports,
SortedMap<String, Integer> bridgeIpVersions) throws SQLException {
@@ -301,7 +303,8 @@ public class Main {
database.insertIntoImported(fingerprint, "bridge", "responses", "", "",
"", fromMillis, toMillis, resp * intervalFraction);
parseBridgeRespByCategory(fingerprint, fromMillis, toMillis, resp,
- dirreqStatsIntervalLengthMillis, "country", bridgeIps);
+ dirreqStatsIntervalLengthMillis, "country",
+ null != requests ? requests : bridgeIps);
parseBridgeRespByCategory(fingerprint, fromMillis, toMillis, resp,
dirreqStatsIntervalLengthMillis, "transport",
bridgeIpTransports);
@@ -331,7 +334,7 @@ public class Main {
/* If we're not told any frequencies, or at least none of them are
* greater than 4, put in a default that we'll attribute all responses
* to. */
- if (total == 0) {
+ if (frequenciesCopy.isEmpty()) {
switch (category) {
case "country":
frequenciesCopy.put("??", 4.0);
diff --git a/src/main/resources/web/jsps/reproducible-metrics.jsp b/src/main/resources/web/jsps/reproducible-metrics.jsp
index 209cb5b..922e458 100644
--- a/src/main/resources/web/jsps/reproducible-metrics.jsp
+++ b/src/main/resources/web/jsps/reproducible-metrics.jsp
@@ -198,10 +198,11 @@ As above, refer to the <a href="/bridge-descriptors.html">Tor bridge descriptors
<p>Parse the <code>"dirreq-write-history"</code> line containing written bytes spent on answering directory requests. If the contained statistics end time is more than 1 week older than the descriptor publication time in the <code>"published"</code> line, skip this line to avoid including statistics in the aggregation that have very likely been reported in earlier descriptors and processed before. If a statistics interval spans more than 1 UTC date, split observations to the covered UTC dates by assuming a linear distribution of observations.</p>
-<p>Parse the <code>"dirreq-stats-end"</code> and <code>"dirreq-v3-resp"</code> lines containing directory-request statistics.
+<p>Parse the <code>"dirreq-stats-end"</code>, <code>"dirreq-v3-resp"</code>, and <code>"dirreq-v3-reqs"</code> lines containing directory-request statistics.
If the statistics end time in the <code>"dirreq-stats-end"</code> line is more than 1 week older than the descriptor publication time in the <code>"published"</code> line, skip these directory request statistics for the same reason as given above: to avoid including statistics in the aggregation that have very likely been reported in earlier descriptors and processed before.
Also skip statistics with an interval length other than 1 day.
-Parse successful requests from the <code>"ok"</code> part of the <code>"dirreq-v3-resp"</code> line. Subtract <code>4</code> to undo the binning operation that has been applied by the bridge. Discard the resulting number if it's zero or negative.
+Parse successful requests from the <code>"ok"</code> part of the <code>"dirreq-v3-resp"</code> line, subtract <code>4</code> to undo the binning operation that has been applied by the bridge, and discard the resulting number if it's zero or negative.
+Parse successful requests by country from the <code>"dirreq-v3-reqs"</code> line, subtract <code>4</code> from each number to undo the binning operation that has been applied by the bridge, and discard the resulting number if it's zero or negative.
Split observations to the covered UTC dates by assuming a linear distribution of observations.</p>
<p>Parse the <code>"bridge-ips"</code>, <code>"bridge-ip-versions"</code>, and <code>"bridge-ip-transports"</code> lines containing unique connecting IP addresses by country, IP version, and transport. From each number of unique IP addresses, subtract 4 to undo the binning operation that has been applied by the bridge. Discard the resulting number if it's zero or negative.</p>
@@ -210,9 +211,15 @@ Split observations to the covered UTC dates by assuming a linear distribution of
<h4>Step 3: Approximate directory requests by country, transport, and IP version</h4>
-<p>Bridges, unlike relays, do not report directory request numbers by country, transport, or IP version.
-However, bridges do report unique IP address counts by country, by transport, and by IP version.
-We approximate directory request numbers by multiplying the fraction of unique IP addresses from a given country, transport, or IP version with the total number of successful requests.</p>
+<p>Older bridges did not report directory requests by country but only total requests and unique IP address counts by country.
+In that case we approximate directory requests by country by multiplying the total number with the fraction of unique IP addresses from a given country.
+For newer bridges that do report directory requests by country we still take total requests as starting point and multiply with the fraction of requests by country.
+Otherwise, if we had used directory requests by country directly, totals by country, transport, and IP version would not match.
+If a bridge reports neither directory requests by country nor unique IP addresses by country, we attribute all requests to "??" which stands for Unknown Country.</p>
+
+<p>Bridges do not report directory requests by transport or IP version.
+We approximate these numbers by multiplying the total number of requests with the fraction of unique IP addresses by transport or IP version.
+If a bridge does not report unique IP addresses by transport or IP version, we attribute all requests to the default onion-routing protocol or to IPv4, respectively.</p>
<p>As a special case, we also approximate lower and upper bounds for directory requests by country <em>and</em> transport.
This approximation is based on the fact that most bridges only provide a small number of transports.
@@ -223,8 +230,6 @@ This allows us to combine unique IP address sets by country and by transport and
<li>We calculate the upper bound as <code>min(C(b), T(b))</code> with the definitions from above. Reasoning: There cannot be more requests by country and transport than there are requests by either of the two numbers.
</ul>
-<p>If a bridge does not report unique IP addresses by country, transport, or IP version, we attribute all requests to "??" which stands for Unknown Country, to the default onion-routing protocol, or to IPv4.</p>
-
<h4>Step 4: Estimate fraction of reported directory-request statistics</h4>
<p>The step for estimating the fraction of reported directory-request statistics is pretty much the same for bridges and for relays.
1
0

[metrics-web/master] Estimate direct users based on dirreq responses.
by karsten@torproject.org 12 Apr '20
by karsten@torproject.org 12 Apr '20
12 Apr '20
commit 3fcbcf84c94206ca03ad378e10babbd9f68733c5
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Wed Mar 25 17:27:14 2020 +0100
Estimate direct users based on dirreq responses.
Estimate relay users by country based on responses to directory
requests to reduce the overall effect of binning and to make relay and
bridge user estimates more comparable.
Implements #18203.
---
CHANGELOG.md | 3 +
.../org/torproject/metrics/stats/clients/Main.java | 64 ++++++++++++++--------
.../resources/web/jsps/reproducible-metrics.jsp | 22 +++++---
3 files changed, 60 insertions(+), 29 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 323d0e7..fa77766 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,9 @@
- Extract directory authority bytes per day in the bwhist module.
- Rewrite insert_bwhist in SQL to improve performance of the bwhist
module.
+ - Estimate relay users by country based on responses to directory
+ requests to reduce the overall effect of binning and to make
+ relay and bridge user estimates more comparable.
* Minor changes
- Make Jetty host configurable.
diff --git a/src/main/java/org/torproject/metrics/stats/clients/Main.java b/src/main/java/org/torproject/metrics/stats/clients/Main.java
index bfa9214..9dc7d8c 100644
--- a/src/main/java/org/torproject/metrics/stats/clients/Main.java
+++ b/src/main/java/org/torproject/metrics/stats/clients/Main.java
@@ -104,20 +104,22 @@ public class Main {
long dirreqStatsEndMillis = descriptor.getDirreqStatsEndMillis();
long dirreqStatsIntervalLengthMillis =
descriptor.getDirreqStatsIntervalLength() * 1000L;
+ SortedMap<String, Integer> responses = descriptor.getDirreqV3Resp();
SortedMap<String, Integer> requests = descriptor.getDirreqV3Reqs();
BandwidthHistory dirreqWriteHistory =
descriptor.getDirreqWriteHistory();
- parseRelayDirreqV3Reqs(fingerprint, publishedMillis,
- dirreqStatsEndMillis, dirreqStatsIntervalLengthMillis, requests);
+ parseRelayDirreqV3Resp(fingerprint, publishedMillis, dirreqStatsEndMillis,
+ dirreqStatsIntervalLengthMillis, responses, requests);
parseRelayDirreqWriteHistory(fingerprint, publishedMillis,
dirreqWriteHistory);
}
- private static void parseRelayDirreqV3Reqs(String fingerprint,
+ private static void parseRelayDirreqV3Resp(String fingerprint,
long publishedMillis, long dirreqStatsEndMillis,
long dirreqStatsIntervalLengthMillis,
+ SortedMap<String, Integer> responses,
SortedMap<String, Integer> requests) throws SQLException {
- if (requests == null
+ if (responses == null
|| publishedMillis - dirreqStatsEndMillis > ONE_WEEK_MILLIS
|| dirreqStatsIntervalLengthMillis != ONE_DAY_MILLIS) {
/* Cut off all observations that are one week older than
@@ -129,25 +131,43 @@ public class Main {
- dirreqStatsIntervalLengthMillis;
long utcBreakMillis = (dirreqStatsEndMillis / ONE_DAY_MILLIS)
* ONE_DAY_MILLIS;
- for (int i = 0; i < 2; i++) {
- long fromMillis = i == 0 ? statsStartMillis
- : utcBreakMillis;
- long toMillis = i == 0 ? utcBreakMillis : dirreqStatsEndMillis;
- if (fromMillis >= toMillis) {
- continue;
- }
- double intervalFraction = ((double) (toMillis - fromMillis))
- / ((double) dirreqStatsIntervalLengthMillis);
- double sum = 0L;
- for (Map.Entry<String, Integer> e : requests.entrySet()) {
- String country = e.getKey();
- double reqs = ((double) e.getValue()) - 4.0;
- sum += reqs;
- database.insertIntoImported(fingerprint, "relay", "responses", country,
- "", "", fromMillis, toMillis, reqs * intervalFraction);
+ double resp = ((double) responses.get("ok")) - 4.0;
+ if (resp > 0.0) {
+ for (int i = 0; i < 2; i++) {
+ long fromMillis = i == 0 ? statsStartMillis : utcBreakMillis;
+ long toMillis = i == 0 ? utcBreakMillis : dirreqStatsEndMillis;
+ if (fromMillis >= toMillis) {
+ continue;
+ }
+ double intervalFraction = ((double) (toMillis - fromMillis))
+ / ((double) dirreqStatsIntervalLengthMillis);
+ double total = 0L;
+ SortedMap<String, Double> requestsCopy = new TreeMap<>();
+ if (null != requests) {
+ for (Map.Entry<String, Integer> e : requests.entrySet()) {
+ if (e.getValue() < 4.0) {
+ continue;
+ }
+ double frequency = ((double) e.getValue()) - 4.0;
+ requestsCopy.put(e.getKey(), frequency);
+ total += frequency;
+ }
+ }
+ /* If we're not told any requests, or at least none of them are greater
+ * than 4, put in a default that we'll attribute all responses to. */
+ if (requestsCopy.isEmpty()) {
+ requestsCopy.put("??", 4.0);
+ total = 4.0;
+ }
+ for (Map.Entry<String, Double> e : requestsCopy.entrySet()) {
+ String country = e.getKey();
+ double val = resp * intervalFraction * e.getValue() / total;
+ database.insertIntoImported(fingerprint, "relay", "responses",
+ country, "", "", fromMillis, toMillis, val);
+ }
+ database.insertIntoImported(fingerprint, "relay", "responses", "", "",
+ "", fromMillis, toMillis, resp * intervalFraction);
}
- database.insertIntoImported(fingerprint, "relay", "responses", "", "",
- "", fromMillis, toMillis, sum * intervalFraction);
}
}
diff --git a/src/main/resources/web/jsps/reproducible-metrics.jsp b/src/main/resources/web/jsps/reproducible-metrics.jsp
index 98b9784..209cb5b 100644
--- a/src/main/resources/web/jsps/reproducible-metrics.jsp
+++ b/src/main/resources/web/jsps/reproducible-metrics.jsp
@@ -85,13 +85,21 @@ As above, refer to the <a href="https://gitweb.torproject.org/torspec.git/tree/d
<p>Parse the <code>"dirreq-write-history"</code> line containing written bytes spent on answering directory requests. If the contained statistics end time is more than 1 week older than the descriptor publication time in the <code>"published"</code> line, skip this line to avoid including statistics in the aggregation that have very likely been reported in earlier descriptors and processed before. If a statistics interval spans more than 1 UTC date, split observations to the covered UTC dates by assuming a linear distribution of observations.</p>
-<p>Parse the <code>"dirreq-stats-end"</code> and <code>"dirreq-v3-reqs"</code> lines containing directory-request statistics.
+<p>Parse the <code>"dirreq-stats-end"</code>, <code>"dirreq-v3-resp"</code>, and <code>"dirreq-v3-reqs"</code> lines containing directory-request statistics.
If the statistics end time in the <code>"dirreq-stats-end"</code> line is more than 1 week older than the descriptor publication time in the <code>"published"</code> line, skip these directory request statistics for the same reason as given above: to avoid including statistics in the aggregation that have very likely been reported in earlier descriptors and processed before.
Also skip statistics with an interval length other than 1 day.
-Parse successful requests by country from the <code>"dirreq-v3-reqs"</code> line. From each number, subtract <code>4</code> to undo the binning operation that has been applied by the relay. Discard the resulting number if it's zero or negative.
+Parse successful requests from the <code>"ok"</code> part of the <code>"dirreq-v3-resp"</code> line, subtract <code>4</code> to undo the binning operation that has been applied by the relay, and discard the resulting number if it's zero or negative.
+Parse successful requests by country from the <code>"dirreq-v3-reqs"</code> line, subtract <code>4</code> from each number to undo the binning operation that has been applied by the relay, and discard the resulting number if it's zero or negative.
Split observations to the covered UTC dates by assuming a linear distribution of observations.</p>
-<h4>Step 3: Estimate fraction of reported directory-request statistics</h4>
+<h4>Step 3: Approximate directory requests by country</h4>
+
+<p>Relays report directory request numbers in two places: as a total number (<code>"dirreq-v3-resp"</code> line) and as numbers broken down by country (<code>"dirreq-v3-reqs"</code> line).
+Rather than using numbers broken down by country directly we multiply total requests with the fraction of requests from a given country.
+This has two reasons: it reduces the overall effect of binning, and it makes relay and bridge user estimates more comparable.
+If a relay for some reason only reports total requests and not requests by country, we attribute all requests to "??" which stands for Unknown Country.</p>
+
+<h4>Step 4: Estimate fraction of reported directory-request statistics</h4>
<p>The next step after parsing descriptors is to estimate the fraction of reported directory-request statistics on a given day.
This fraction will be used in the next step to extrapolate observed request numbers to expected network totals.
@@ -117,7 +125,7 @@ frac = -----------------------------
h(H) * n(N)
</pre>
-<h4>Step 4: Compute estimated relay users per country</h4>
+<h4>Step 5: Compute estimated relay users per country</h4>
<p>With the estimated fraction of reported directory-request statistics from the previous step it is now possible to compute estimates for relay users.
Similar to the previous step, the same approach described here also applies to estimating bridge users by country, transport, or IP version as described further down below.</p>
@@ -132,7 +140,7 @@ This approach also works with <var>r(R)</var> being the sum of requests from <em
<p>A client that is connected 24/7 makes about 15 requests per day, but not all clients are connected 24/7, so we picked the number 10 for the average client. We simply divide directory requests by 10 and consider the result as the number of users. Another way of looking at it, is that we assume that each request represents a client that stays online for one tenth of a day, so 2 hours and 24 minutes.</p>
<p>Skip dates where <var>frac</var> is smaller than 10% and hence too low for a robust estimate. Also skip dates where <var>frac</var> is greater than 110%, which would indicate an issue in the previous step. We picked 110% as upper bound, not 100%, because there can be relays reporting statistics that temporarily didn't make it into the consensus, and we accept up to 10% of those additional statistics. However, there needs to be some upper bound to exclude obvious outliers with fractions of 120%, 150%, or even 200%.</p>
-<h4>Step 5: Compute ranges of expected clients per day to detect potential censorship events</h4>
+<h4>Step 6: Compute ranges of expected clients per day to detect potential censorship events</h4>
<p>As last step in reproducing relay user numbers, compute ranges of expected clients per day to detect potential censorship events.
For further details on the detection method, refer to the technical report titled <a href="https://research.torproject.org/techreports/detector-2011-09-09.pdf">"An anomaly-based censorship-detection system for Tor"</a>.
@@ -220,12 +228,12 @@ This allows us to combine unique IP address sets by country and by transport and
<h4>Step 4: Estimate fraction of reported directory-request statistics</h4>
<p>The step for estimating the fraction of reported directory-request statistics is pretty much the same for bridges and for relays.
-This is why we refer to Step 3 of the <a href="#relay-users">Relay users</a> description for this estimation.</p>
+This is why we refer to Step 4 of the <a href="#relay-users">Relay users</a> description for this estimation.</p>
<h4>Step 5: Compute estimated bridge users per country, transport, or IP version</h4>
<p>Similar to the previous step, this step is equivalent for bridge users and relay users.
-We therefore refer to Step 4 of the <a href="#relay-users">Relay users</a> description for transforming directory request numbers to user numbers.</p>
+We therefore refer to Step 5 of the <a href="#relay-users">Relay users</a> description for transforming directory request numbers to user numbers.</p>
</div>
1
0

12 Apr '20
commit b14639f7108d910991c96bdb43d58831d913c3d0
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Sat Apr 11 08:28:11 2020 +0200
Fix unit tests broken by #24941.
---
.../metrics/web/DirectoryListingTest.java | 29 ++++++++++++++--------
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/src/test/java/org/torproject/metrics/web/DirectoryListingTest.java b/src/test/java/org/torproject/metrics/web/DirectoryListingTest.java
index 99e55a6..e560cd5 100644
--- a/src/test/java/org/torproject/metrics/web/DirectoryListingTest.java
+++ b/src/test/java/org/torproject/metrics/web/DirectoryListingTest.java
@@ -49,26 +49,35 @@ public class DirectoryListingTest {
public void testListing() throws Exception {
DirectoryListing dl = DirectoryListing.ofInputStream(
new ByteArrayInputStream(jsonIndex.getBytes()));
- assertEquals(4, dl.size());
+ assertEquals(4, dl.getFormattedTableEntries().size());
for (String key : new String[]{"/collector/a1/", "/collector/",
"/collector/a1/p2/", "/collector/a1/p1/"}) {
- assertTrue("Missing: " + key, dl.containsKey(key));
+ assertTrue("Missing: " + key,
+ dl.getFormattedTableEntries().containsKey(key));
}
assertEquals("[Parent Directory, /collector.html, , ]",
- Arrays.toString(dl.get("/collector/").get(0)));
- assertEquals(3, dl.get("/collector/a1/").size());
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/").get(0)));
+ assertEquals(3, dl.getFormattedTableEntries()
+ .get("/collector/a1/").size());
assertEquals("[Parent Directory, /collector/, , ]",
- Arrays.toString(dl.get("/collector/a1/").get(0)));
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/a1/").get(0)));
assertEquals("[p1, /collector/a1/p1/, , ]",
- Arrays.toString(dl.get("/collector/a1/").get(1)));
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/a1/").get(1)));
assertEquals("[p2, /collector/a1/p2/, , ]",
- Arrays.toString(dl.get("/collector/a1/").get(2)));
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/a1/").get(2)));
assertEquals("[Parent Directory, /collector/a1/, , ]",
- Arrays.toString(dl.get("/collector/a1/p1/").get(0)));
- assertEquals(2, dl.get("/collector/a1/p2/").size());
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/a1/p1/").get(0)));
+ assertEquals(2, dl.getFormattedTableEntries()
+ .get("/collector/a1/p2/").size());
assertEquals("[file3, https://some.collector.url/a1/p2/file3, "
+ "2012-03-03 15:15, 609.5 KiB]",
- Arrays.toString(dl.get("/collector/a1/p2/").get(1)));
+ Arrays.toString(dl.getFormattedTableEntries()
+ .get("/collector/a1/p2/").get(1)));
}
}
1
0

12 Apr '20
commit b2ec64b43a3db1b66442033af148fdf44720267d
Author: emma peel <emma.peel(a)riseup.net>
Date: Sun Apr 12 08:35:41 2020 +0200
fixed links, also one sentence per line
---
content/circumvention/contents.lr | 11 ++++++++---
content/mobile-tor/contents.lr | 8 ++++----
content/running-tor-browser/contents.lr | 4 +++-
3 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/content/circumvention/contents.lr b/content/circumvention/contents.lr
index f0d1cdf..e9bdc42 100644
--- a/content/circumvention/contents.lr
+++ b/content/circumvention/contents.lr
@@ -49,9 +49,14 @@ meek
### USING PLUGGABLE TRANSPORTS
-To use a pluggable transport, click "Configure" when starting Tor Browser for the first time. After checking the checkbox "Tor is censored in my country," choose the "Select a built-in bridge" option. From the dropdown, select whichever pluggable transport you'd like to use. Once you've selected the pluggable transport, click "Connect" to save your settings.
+To use a pluggable transport, click "Configure" when starting Tor Browser for the first time.
+After checking the checkbox "Tor is censored in my country," choose the "Select a built-in bridge" option.
+From the dropdown, select whichever pluggable transport you'd like to use.
+Once you've selected the pluggable transport, click "Connect" to save your settings.
-Or, if you have Tor Browser running, click on "Preferences" in the hamburger menu and then on "Tor" in the sidebar. In the "Bridges" section, check the checkbox "Use a bridge," and from the option "Select a built-in bridge," choose whichever pluggable transport you'd like to use from the dropdown. Your setting will automatically be saved once you close the tab.
+Or, if you have Tor Browser running, click on "Preferences" in the hamburger menu and then on "Tor" in the sidebar.
+In the "Bridges" section, check the checkbox "Use a bridge," and from the option "Select a built-in bridge," choose whichever pluggable transport you'd like to use from the dropdown.
+Your settings will automatically be saved once you close the tab.
### WHICH TRANSPORT SHOULD I USE?
@@ -62,4 +67,4 @@ If you are trying to circumvent a blocked connection for the first time, you sho
If you try all of these options, and none of them gets you online, you will need to request a bridge or manually enter bridge addresses.
-Read the [Bridges](/en-US/bridges/) section to learn what bridges are and how to obtain them.
+Read the [Bridges](../bridges/) section to learn what bridges are and how to obtain them.
diff --git a/content/mobile-tor/contents.lr b/content/mobile-tor/contents.lr
index 3cd196b..4fd8704 100644
--- a/content/mobile-tor/contents.lr
+++ b/content/mobile-tor/contents.lr
@@ -68,7 +68,7 @@ When you run Tor Browser for the first time, you will see the option to connect
In most cases, choosing "Connect" will allow you to connect to the Tor network without any further configuration.
Once clicked, changing sentences will appear at the bottom of the screen, indicating Tor’s connection progress.
-If you are on a relatively fast connection, but this text seems to get stuck at a certain point, see the [Troubleshooting](https://tb-manual.torproject.org/troubleshooting) page for help solving the problem.
+If you are on a relatively fast connection, but this text seems to get stuck at a certain point, see the [Troubleshooting](../troubleshooting) page for help solving the problem.
#### Configure
@@ -78,7 +78,7 @@ If you know that your connection is censored, you should select the settings ico
Tor Browser will take you through a series of configuration options.
The first screen asks if access to the Tor network is blocked or censored on your connection.
If you know your connection is censored, or you have tried and failed to connect to the Tor network and no other solutions have worked, click the switch.
-You will then be taken to the [Circumvention](/mobile-tor/#circumvention) screen to configure a pluggable transport.
+You will then be taken to the [Circumvention](../circumvention) screen to configure a pluggable transport.
### CIRCUMVENTION
@@ -97,7 +97,7 @@ With the "Select a bridge" option, you will have two options: "obfs4" and "meek-
<img style="max-width:300px" class="col-md-6" src="../../static/images/android-selected-a-bridge.png" alt="Selected a bridge on Tor Browser for Android">
-If you choose the "Provide a Bridge I know" option, then you have to enter a [bridge address](https://tb-manual.torproject.org/bridges/).
+If you choose the "Provide a Bridge I know" option, then you have to enter a [bridge address](../bridges/).
<img style="max-width:300px" class="col-md-6" src="../../static/images/android-provide-a-bridge.png" alt="Provide a bridge on Tor Browser for Android">
@@ -119,7 +119,7 @@ Selecting it will only change your Tor circuit.
<img style="max-width:300px" class="col-md-6" src="../../static/images/android-security-settings.gif" alt="Security settings and security slider on Tor Browser for Android">
-[Security settings](https://tb-manual.torproject.org/security-settings/) disable certain web features that can be used to attack your security and anonymity.
+[Security settings](../security-settings/) disable certain web features that can be used to attack your security and anonymity.
Tor Browser for Android provides the same three security levels that are available on desktop.
You can modify the security level by following given steps:
diff --git a/content/running-tor-browser/contents.lr b/content/running-tor-browser/contents.lr
index 960bc91..2de889c 100644
--- a/content/running-tor-browser/contents.lr
+++ b/content/running-tor-browser/contents.lr
@@ -40,4 +40,6 @@ This will display the [Circumvention](../circumvention) section to configure a p
<img class="col-md-6" src="../../static/images/proxy.png">
-The second checkbox asks if your connection uses a proxy. In most cases, this is not necessary. You will usually know if you need to check this checkbox because the same settings will be used for other browsers on your system. If possible, ask your network administrator for guidance. If your connection does not use a proxy, click “Connect”.
+The second checkbox asks if your connection uses a proxy. In most cases, this is not necessary. You will usually know if you need to check this checkbox because the same settings will be used for other browsers on your system.
+If possible, ask your network administrator for guidance.
+If your connection does not use a proxy, click “Connect”.
1
0

[translation/tbmanual-contentspot_completed] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot_completed
by translation@torproject.org 12 Apr '20
by translation@torproject.org 12 Apr '20
12 Apr '20
commit c86dcf2c0ec49489a4da09ce3e1844648419efee
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Apr 12 06:29:44 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspo…
---
contents+en.po | 1308 +++++++++++++++++++++++---
contents+es.po | 2638 ----------------------------------------------------
contents+fr.po | 2667 -----------------------------------------------------
contents+it.po | 2634 ----------------------------------------------------
contents+lt.po | 2638 ----------------------------------------------------
contents+ms.po | 2139 ------------------------------------------
contents+pt-BR.po | 2219 --------------------------------------------
contents+pt-PT.po | 2354 ----------------------------------------------
contents+tr.po | 2628 ----------------------------------------------------
contents+zh-CN.po | 2263 ---------------------------------------------
contents.pot | 1308 +++++++++++++++++++++++---
11 files changed, 2390 insertions(+), 22406 deletions(-)
diff --git a/contents+en.po b/contents+en.po
index 638311cc09..b12a029b25 100644
--- a/contents+en.po
+++ b/contents+en.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+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"
@@ -73,8 +73,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Running Tor Browser for the first time"
+msgid "Running Tor Browser for the First Time"
+msgstr "Running Tor Browser for the First Time"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -93,8 +93,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Managing identities"
+msgid "Managing Identities"
+msgstr "Managing Identities"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -140,13 +140,20 @@ msgstr "Known issues"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr "Mobile Tor"
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Becoming a Tor Translator"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
+msgstr "Making Tor Browser Portable"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -560,6 +567,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -578,11 +587,11 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -598,56 +607,91 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
msgstr ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr "Tor Browser will take you through a series of configuration options."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
msgstr ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr "If you do not believe this is the case, leave this unchecked."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr "If possible, ask your network administrator for guidance."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click “Connect”."
+msgstr "If your connection does not use a proxy, click “Connect”."
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -744,13 +788,13 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -789,35 +833,65 @@ msgstr "### USING PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr "Your settings will automatically be saved once you close the tab."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -837,28 +911,28 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -955,41 +1029,60 @@ msgstr "### USING MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1017,24 +1110,29 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
+msgstr "Click \"Connect\" to save your settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1653,6 +1751,8 @@ msgstr "How to update Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1838,6 +1938,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### KNOWN ISSUES"
@@ -2219,6 +2321,986 @@ msgstr ""
"* BitTorrent in specific is [not anonymous over "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr "Learn about Tor for mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr "### Tor Browser for Android"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr "### DOWNLOADING AND INSTALLATION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+"It is very risky to download Tor Browser outside of these three platforms."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr "#### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr "#### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr "2. After installing F-Droid, open the app."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr "3. At the lower-right-hand corner, open \"Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr "4. Under the \"My Apps\" section, open Repositories."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr "5. Toggle \"Guardian Project Official Releases\" as enabled."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr "7. Tap the Back button at the upper-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr "8. Open \"Latest\" at the lower-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr "11. Search for \"Tor Browser for Android\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr "12. Open the query result by \"The Tor Project\" and install."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr "#### The Tor Project website"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr "#### Connect"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Tor’s connection progress."
+msgstr ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Tor’s connection progress."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr "#### Configure"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr "### CIRCUMVENTION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr "### MANAGING IDENTITIES"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr "#### New Identity"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr "Clicking on this button will provide you with a new identity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr "Selecting it will only change your Tor circuit."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr "### SECURITY SETTINGS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr "You can modify the security level by following given steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr "* Tap on a button of 3 vertical dots in URL bar."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr "* Scroll down and tap on \"Security Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr "* You can now select an option from the security level slider."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr "### UPDATING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr "You can update Tor Browser automatically or manually."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr "#### Updating Tor Browser for Android automatically"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr "##### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr "##### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr "Click on \"Settings\", then go to \"Manage installed apps\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr "#### Updating Tor Browser for Android manually"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr "### UNINSTALLING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr "#### Mobile device app settings"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr "### More about Tor on mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr "#### Orfox"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr "Android was released."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr "#### Orbot"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr "circumvent censorship and protect against surveillance."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr "### Tor Browser for iOS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr "There is no Tor Browser for iOS."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr "### Tor Browser for Windows Phone"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"There is currently no supported method for running Tor on Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2360,13 +3442,13 @@ msgstr "DONATE NOW"
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2374,11 +3456,11 @@ msgstr ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Our mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2390,33 +3472,33 @@ msgstr ""
"availability and use, and furthering their scientific and popular "
"understanding."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donate"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donate Now"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscribe to our Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Get monthly updates and opportunities from the Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Sign up"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+es.po b/contents+es.po
deleted file mode 100644
index bbd2a9afe2..0000000000
--- a/contents+es.po
+++ /dev/null
@@ -1,2638 +0,0 @@
-# Translators:
-# Antonela D <antonela(a)torproject.org>, 2019
-# Zuhualime Akoochimoya, 2019
-# David Figuera <dfb(a)fastmail.com>, 2019
-# erinm, 2019
-# Nicolas Sera-Leyva <nseraleyva(a)internews.org>, 2019
-# strel, 2019
-# eulalio barbero espinosa <eulaliob(a)gmail.com>, 2019
-# Joaquín Serna <bubuanabelas(a)cryptolab.net>, 2020
-# Emma Peel, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
-"Language-Team: Spanish (https://www.transifex.com/otf/teams/1519/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Manual de usuario del Tor Browser"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Acerca de"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Documentación"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Prensa"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Blog"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Gacetilla"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Ayuda"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Comunidad"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Contactar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "Empleo"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Sobre el Tor Browser"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Descargando"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Ejecutar Tor Browser por primera vez"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Transportes conectables"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Evasión"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Puentes"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Administrar identidades"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Servicios cebolla"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Conexiones seguras"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Configuración de Seguridad"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Actualizar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Complementos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Resolución de problemas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Desinstalar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Problemas conocidos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Traducir Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Hacer portable el Navegador Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Instalación"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "ACERCA DEL NAVEGADOR TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Aprende lo que el Tor Browser puede hacer para proteger tu privacidad y "
-"anonimato"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-"El Tor Browser usa la red Tor para proteger tu privacidad y anonimato. Usar "
-"la red Tor tiene dos particularidades:"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* Tu proveedor de servicios de Internet (ISP), y otros que estén observando "
-"tu conexión localmente, no podrán rastrear tu actividad en Internet, "
-"incluyendo los nombres y direcciones de los sitios web que visites."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* Los operadores de los sitios web y servicios que uses, y cualquiera que te"
-" esté observando, verán una conexión proveniente de la red Tor en lugar de "
-"tu dirección de Internet (IP) real, y no sabrán quién eres a menos que te "
-"identifiques de forma concreta."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-"Además, el Tor Browser está diseñado para evitar que los sitios web realicen"
-" “fingerprinting” (perfiles de patrones de los usuarios) o te identifiquen "
-"por la configuración de tu navegador."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"De forma predeterminada, el Tor Browser no conserva ningún historial de "
-"navegación. Las cookies sólo son válidas durante una sola sesión (hasta que "
-"se cierre el Tor Browser o se solicite una [Nueva Identidad](/es/managing-"
-"identities/#new-identity))."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### CÓMO FUNCIONA TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"La red Tor es una red de túneles virtuales que permite mejorar la privacidad"
-" y seguridad en Internet. Tor funciona enviando el tráfico a través de tres "
-"servidores aleatorios (también conocidos como *repetidores*) en la red Tor. "
-"El último repetidor en el circuito (el \"repetidor de salida\") envía "
-"entonces el tráfico hacia el Internet público."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../../static/images/how-tor-works.png\" alt=\"Como "
-"funciona Tor\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"La imagen superior muestra un usuario navegando por distintos sitios web con"
-" Tor. Los ordenadores verdes en el centro representan los repetidores de la "
-"red Tor, mientras que las tres llaves representan las capas de cifrado entre"
-" el usuario y cada repetidor."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "DESCARGAR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Cómo descargar el Tor Browser"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"La forma más fácil y simple de descargar Tor es desde el sitio web oficial "
-"del Proyecto Tor en https://www.torproject.org/es/download."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"Asegura la conexión al sitio usando [HTTPS](/es/secure-connections), que se "
-"lo pone mucho más difícil a cualquiera el manipularla."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Sin embargo, puede haber ocasiones en las que no puedas acceder al sitio web"
-" del Proyecto Tor: por ejemplo podría estar bloqueado en tu red."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Si esto sucede, puedes usar uno de los métodos de descarga alternativos "
-"listados debajo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### ESPEJOS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Si no puedes descargar el Tor Browser del sitio web oficial del Proyecto "
-"Tor, puedes tratar de descargarlo de uno de nuestros espejos (mirrors) "
-"oficiales, tanto a través de [EFF](https://tor.eff.org), como [Calyx "
-"Institute](https://tor.calyxinstitute.org) o [CCC](https://tor.ccc.de)."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor es un servicio que responde automáticamente a los mensajes con "
-"enlaces a la última versión del Tor Browser, alojado en diferentes lugares, "
-"tales como Dropbox, Google Drive y GitHub."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### USAR GETTOR VÍA CORREO ELECTRÓNICO:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"Envía un correo a gettor(a)torproject.org, y en el cuerpo del mensaje escribe "
-"simplemente “windows”, “osx”, o “linux”, (sin las comillas) dependiendo de "
-"tu sistema operativo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor responderá con un correo conteniendo enlaces desde los que puedes "
-"descargar el paquete Tor, la firma criptográfica (necesaria para verificar "
-"la descarga), la huella de validación (fingerprint) de la clave usada para "
-"hacer la firma, y la suma de verificación (checksum) del paquete. Puede que "
-"se te ofrezca la elección entre software de \"32-bit\" o de \"64-bit\": la "
-"elección dependerá del modelo del ordenador donde se vaya a usar."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### USAR GETTOR VÍA JABBER/XMPP (JITSI, COYIM, ETC.):"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Para obtener enlaces para descargar Tor en chino para Linux envía un mensaje"
-" a gettor(a)torproject.org con las palabras \"linux zh\" en él."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "Instalación"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Instalar el Navegador Tor"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "En Windows:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Ve a la [página de descarga](https://www.torproject.org/download) del "
-"Navegador Tor."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Descarga el archivo `.exe` de Windows"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Recomendado) Verifica la [firma del "
-"archivo](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Cuando se haya completado la descarga, haz doble click en el archivo "
-"`.exe`. Completa el proceso del asistente de instalación."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "En macOS:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. Descarga el archivo `.dmg` de macOS"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Cuando se haya completado la descarga, haz doble click en el archivo "
-"`.dmg`. Completa el proceso del asistente de instalación."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "En GNU/Linux:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. Descarga el archivo `.tar.xz` de GNU/Linux"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. Cuando se haya completado la descarga, extrae el archivo con el comando "
-"`tar -xf [TB archive]` o usando un administrador de archivos."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. Necesitarás decirle a tu GNU/Linux que quieres tener la capacidad de "
-"ejecutar scripts de shell desde la interfaz gráfica."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Navega hasta el directorio recién extraído del Navegador Tor."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"Haz clic con el botón derecho en `start-tor-browser.desktop`, abre "
-"Propiedades o Preferencias y cambia el permiso para permitir la ejecución "
-"del archivo como programa."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr "Doble clic en el icono para iniciar el Navegador Tor por primera vez."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Alternativamente, dentro del directorio del Navegador Tor, puedes "
-"ejecutar Tor escribiendo el comando:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "Corriendo el Navegador Tor por primera vez"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Cómo usar el Tor Browser por primera vez"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Cuando ejecutes Tor Browser por primera vez verás la ventana de "
-"Configuración de la Red Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Esta te ofrece la opción de conectar directamente a la red Tor, o de "
-"configurar el Tor Browser para tu conexión."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### CONECTAR"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"En la mayoría de los casos escoger \"Conectar\" te permitirá conectar a la "
-"red Tor sin ninguna configuración adicional."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Una vez hagas clic aparecerá una barra de estado mostrando el progreso de la"
-" conexión de Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Si tienes una conexión relativamente rápida pero la barra parece haberse "
-"quedado fija en un determinado punto, lee la página [Solución de "
-"problemas](/es/troubleshooting) para obtener ayuda para solucionar el "
-"problema."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### CONFIGURAR"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-"Si sabes que tu conexión está censurada o usas un proxy, debes seleccionar "
-"esta opción. Tor te llevará a través de una serie de opciones de "
-"configuración."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"La primera pantalla, pregunta si el acceso a la red Tor está bloqueado o "
-"censurado en tu conexión. Si no crees que este sea el caso, selecciona "
-"\"No\". Si sabes que tu conexión está censurada, o has intentado conectar a "
-"la red Tor y no han funcionado otras soluciones, selecciona \"Sí\", que te "
-"llevará a la pantalla [Evasión](/es/circumvention) para configurar un "
-"transporte conectable."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"La siguiente pantalla pregunta si tu conexión usa un proxy. En la mayoría de"
-" los casos esto no es necesario. Normalmente sabrás si debe responder "
-"\"Sí\", ya que estarás usando la misma configuración para otros navegadores "
-"en tu sistema. Si puedes, pide información a tu administrador de red. Si tu "
-"conexión no usa un proxy, pulsa \"Continuar\"."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "Evitando obstáculos"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Qué hacer si la red Tor está bloqueada"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"El acceso directo a la red Tor a veces puede estar bloqueado por tu "
-"Proveedor de Servicios de Internet (ISP) o por un gobierno."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"El Navegador Tor incluye algunas herramientas de evasión para evitar estos "
-"bloqueos. Estas herramientas se llaman \"transportes conectables\"."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### TIPOS DE TRANSPORTE CONECTABLE"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Actualmente, hay tres transportes conectables disponibles, pero se están "
-"dessarrollando más."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4 hace que el tráfico Tor parezca aleatorio, y también impide que los "
-"censores encuentren puentes mediante el escaneo de Internet. Los puentes "
-"obfs4 es menos probable que se bloqueen que los anteriores puentes obfs3."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"Los transportes meek hacen que parezca que estás navegando por un sitio web "
-"conocido en lugar de usar Tor. meek-azure hace que parezca que estás usando "
-"un sitio web de Microsoft."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake es una mejora de Flashproxy. Envía tu tráfico a través de WebRTC, "
-"un protocolo punto a punto con punteo NAT incorporado."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### USAR TRANSPORTES CONECTABLES"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-"Para usar un transporte conectable, haz clic en' Configurar' cuando inicies "
-"Tor Browser por primera vez. En la ventana que aparece, en el menú "
-"desplegable, selecciona el transporte conectable que desees utilizar."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"O, si tienes el Navegador Tor funcionando, haz clic en 'Preferencias' en el "
-"menú hamburguesa y luego en 'Tor' en la barra lateral. En la sección "
-"'Puentes', marca la casilla 'Usar un puente', y en el menú desplegable "
-"'Selecciona un puente integrado', elije el transporte conectable que desees "
-"utilizar."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-"Una vez que hayas seleccionado el transporte conectable que te gustaría "
-"usar, haz clic en 'Conectar' para guardar tus ajustes."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### ¿QUÉ TRANSPORTE DEBERÍA USAR?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-"Cada uno de los transportes listados en el menú de Tor funciona de manera "
-"diferente, y su efectividad depende de tus circunstancias individuales."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-"Si es la primera vez que intentas usar una conexión censurada, has de probar"
-" con los distintos transportes que hay disponibles: obfs4, snowflake y meek-"
-"azure."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-"Si pruebas todas estas opciones y no consigues conectarte con ninguna de "
-"ellas, necesitarás introducir direcciones de puentes de red manualmente."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Lee la sección de [Puentes](/es/bridges/) para saber qué son los repetidores"
-" puente y cómo obtenerlos."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "PUENTES"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"La mayoría de los Transportes Conectables, como obfs4, se basan en el uso de"
-" repetidores \"puente\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"La mayoría de los [Transportes Conectables](/es/circumvention), como obfs4, "
-"se basan en el uso de repetidores \"puente\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Al igual que los repetidores de Tor normales, los puentes son operados por "
-"voluntarios/as. Sin embargo, dichos puentes no están listados públicamente, "
-"como sí lo están los repetidores normales, para que un adversario no los "
-"pueda identificar fácilmente."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"Usar puentes en combinación con transportes conectables ayuda a disimular el"
-" hecho de que estés usando Tor, pero puede ralentizar la conexión en "
-"comparación con el uso de relés ordinarios de Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Otros transportes conectables, como meek, usan distintas técnicas anti-"
-"censura que no se basan en puentes. No necesitas obtener direcciones de "
-"puentes para usar estos transportes."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### OBTENER DIRECCIONES DE PUENTES"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Como las direcciones de puentes no son públicas, tendrás que solicitarlas "
-"tú. Tienes dos opciones:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr "* Visita https://bridges.torproject.org/ y sigue las instrucciones, o"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Escribe un correo a bridges(a)torproject.org desde una dirección de Gmail, "
-"Yahoo, o Riseup"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Usa MOAT para recuperar puentes desde el Navegador Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### USAR MOAT"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Cuando ejecutes el Tor Browser por primera vez, haz clic en 'Configurar' "
-"para abrir la ventana de Configuración de la Red Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-" También puedes hacer clic en el botón 'Preferencias' en el menú hamburguesa"
-" (menú principal) y luego 'Tor' en la barra lateral."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"En la ventana Configuración de la Red Tor, selecciona 'Tor está censurado en"
-" mi país'. Luego, selecciona 'Proveer un puente que conozco' e ingresa cada "
-"dirección de puente en una línea separada."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"A continuación, selecciona 'Solicitar un puente de torproject.org' y haz "
-"clic en 'Solicitar un puente...'."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Completa el CAPTCHA y haz click en 'Enviar'."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### INTRODUCIR DIRECCIONES DE PUENTE"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-"Una vez que tengas algunos puentes, tendrás que introducirlos en el Tor "
-"Launcher."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Si estás iniciando el Navegador Tor por primera vez, haz clic en "
-"'Configurar' para abrir la ventana de Configuración de la Red Tor. O si no, "
-"haz clic en `Preferencias' en el menú hamburguesa (menú principal) y luego "
-"en `Tor' en la barra lateral para acceder a estas opciones."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"En la sección 'Puentes', marca la casilla 'Usar un puente', luego, "
-"selecciona 'Proporcionar un puente' e introduce cada dirección de puente en "
-"una línea separada."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Si la conexión falla, los puentes que recibiste pueden estar caídos. Usa uno"
-" de los métodos anteriores para obtener más direcciones de puente e "
-"inténtalo de nuevo."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "Gestionando identidades"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Aprende a controlar la información para identificarte en el Navegador Tor"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Cuando conectas a un sitio web, no son sólo los operadores de ese sitio los "
-"que pueden registrar información sobre tu visita. Hoy en día la mayoría de "
-"los sitios web usan numerosos servicios de terceros, incluyendo botones \"Me"
-" gusta\" de redes sociales, rastreadores para estadísticas, y anuncios "
-"publicitarios, todos los cuales pueden vincular tu actividad a través de los"
-" distintos sitios."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"Usar la red Tor evita que los observadores puedan descubrir tu ubicación "
-"exacta y dirección IP, pero incluso sin esta información podrían ser capaces"
-" de vincular distintas áreas de tu patrón de actividad. Por esta razón, el "
-"Navegador Tor incluye algunas funcionalidades adicionales que le ayudan a "
-"controlar qué información puede ligarse a tu identidad."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### La barra URL"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"El Navegador Tor enfoca tu experiencia web en torno a tu relación con el "
-"sitio web de la barra de URLs. Incluso si te conectas a dos sitios distintos"
-" que usan el mismo servicio de seguimiento de terceros, el Navegador Tor "
-"forzará que el contenido sea servido sobre dos circuitos de Tor diferentes, "
-"por lo que el rastreador no sabrá que ambas conexiones se originan desde tu "
-"navegador."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"Por otra parte, todas las conexiones a una sola dirección de sitio web se "
-"realizarán sobre el mismo circuito de Tor, lo que significa que puedes "
-"navegar por diferentes páginas de un solo sitio web en pestañas o ventanas "
-"independientes sin pérdida de funcionalidad."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-"Puedes ver un diagrama del circuito que el Navegador Tor está usando para la"
-" pestaña actual en el menú de información del sitio, en la barra URL."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"En el circuito, el nodo de entrada o Guarda es el primer nodo, y es "
-"aleatoria y automáticamente seleccionado por Tor. Pero es diferente de los "
-"otros nodos en el circuito. A los efectos de evitar los ataques que tratan "
-"de trazar un perfil, el nodo Guarda cambia solamente cada 2-3 meses, a "
-"diferencia de los otros nodos, que cambian con cada nuevo dominio. Para más "
-"información acerca de Guardas, consulta las [Preguntas Más "
-"Frecuentes](https://www.torproject.org/docs/faq#EntryGuards) y el [Portal de"
-" Soporte](https://support.torproject.org/es/tbb/tbb-2/)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### INICIAR SESIONES SOBRE TOR"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Aunque el Navegador Tor está diseñado para habilitar el anonimato total del "
-"usuario en la web, puede haber situaciones en las que tenga sentido usar Tor"
-" con sitios web que requieran nombres de usuario, contraseñas u otra "
-"información de identificación."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Si accedes a un sitio web mediante un navegador normal, revelas tu IP y tu "
-"ubicación geográfica en el proceso. Lo mismo ocurre a menudo cuando envías "
-"un correo electrónico. Iniciar sesión en tu red social o cuentas de correo "
-"electrónico utilizando Navegador Tor te permite elegir exactamente qué "
-"información revelas a los sitios web donde navegas. Iniciar sesión con el "
-"Navegador Tor también es útil si el sitio web al que intentas acceder está "
-"censurado en tu red."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Cuando inicies sesión en un sitio web usando Tor, hay varias cosas que "
-"deberías tener en cuenta:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Mira la página [Conexiones seguras](/es/secure-connections) para conocer "
-"información importante sobre cómo protegerte cuando inicias sesión en sitios"
-" web."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* A menudo el Navegador Tor hace que tu conexión parezca como si viniera de "
-"una parte completamente distinta del mundo. Algunos sitios web, como bancos "
-"o proveedores de correo electrónico, podrían interpretar esto como un signo "
-"de que tu cuenta ha sido hackeada o comprometida, y bloqueárte. La única "
-"forma de resolver esto es seguir el procedimiento recomendado por el sitio "
-"para la recuperación de la cuenta, o contactar con los operadores y "
-"explicarles la situación."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### CAMBIAR IDENTIDADES Y CIRCUITOS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"El Navegador Tor incluye las opciones \"Nueva Identidad\" y \"Nuevo Circuito"
-" Tor para este Sitio\". También se encuentran en el menú principal (menú "
-"hamburguesa)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### NUEVA IDENTIDAD"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Esta opción es útil si quieres evitar que la actividad posterior de tu "
-"navegador sea asociada a lo que estabas haciendo antes. Seleccionarla "
-"cerrará todas tus pestañas y ventanas abiertas, borrará toda la información "
-"privada como cookies e historial de navegación, y usará nuevos circuitos de "
-"Tor para todas las conexiones. Navegador Tor te advertirá de que se "
-"detendrán toda la actividad y descargas, así que ten esto en cuenta antes de"
-" pulsar \"Nueva identidad\"."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-"Para usar esta opción, tienes que cliquear en 'Nueva Identidad' en la barra"
-" de herramientas del navegador Tor."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### NUEVO CIRCUITO TOR PARA ESTE SITIO"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"Esta opción es útil si el [repetidor de salida](/es/about/#how-tor-works) "
-"que estás usando no puede conectar al sitio web que solicitas, o no está "
-"cargando adecuadamente. Seleccionarla provocará que la pestaña actualmente "
-"activa se recargue sobre un nuevo circuito de Tor. Otras pestañas y ventanas"
-" abiertas para el mismo sitio web también usarán el nuevo circuito una vez "
-"sean recargadas. Esta opción no borra ninguna información privada ni "
-"desvincula tu actividad, y tampoco afecta a tus conexiones actuales a otros "
-"sitios web."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-"También puedes acceder a esta opción en el nuevo diagrama de circuito, "
-"dentro del menú de información del sitio, en la barra URL."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "Servicios Onion"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Servicios que sólo son accesibles usando Tor"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Los servicios cebolla (anteriormente conocidos como \"servicios ocultos\") "
-"son servicios (como pueden ser los sitios web) que sólo son accesibles a "
-"través de la red Tor."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"Los servicios cebolla ofrecen varias ventajas sobre los servicios ordinarios"
-" en la web no-privada:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* La ubicación y direcciones IP de un servicio cebolla están ocultas, "
-"dificultando que los adversarios puedan censurarlo o identificar a sus "
-"operadores."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Todo el tráfico entre los usuarios de Tor y los servicios cebolla está "
-"cifrado de extremo-a-extremo, por lo que no hace falta preocuparse de "
-"[conectar a través de HTTPS](/es/secure-connections)."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* La dirección de un servicio cebolla se genera automáticamente, de forma "
-"que los operadores no necesitan comprar un nombre de dominio; la URL .onion "
-"también ayuda a Tor a asegurarse de que estás conectando a la ubicación "
-"correcta y que la conexión no está siendo alterada."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### CÓMO ACCEDER A UN SERVICIO CEBOLLA"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Al igual que en cualquier otro sitio web, deberás conocer la dirección de un"
-" servicio cebolla para poder conectarte. Una dirección cebolla es una cadena"
-" de 16 (y en formato V3, 56) en su mayoría letras y números aleatorios, "
-"seguidos de \".onion\"."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"Cuando accedas a un sitio web que utiliza un servicio cebolla, el Navegador "
-"Tor mostrará en la barra de URL un icono de una pequeña cebolla verde que "
-"muestra el estado de tu conexión: segura y usando un servicio onion. Y si "
-"accedes a un sitio web con https y sevicio onion, mostrará un icono de una "
-"cebolla verde y un candado."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### SOLUCIÓN DE PROBLEMAS "
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"Si no puedes acceder al servicio cebolla que necesitas, asegúrate de haber "
-"ingresado correctamente la dirección cebolla: incluso un pequeño error puede"
-" impedir que el Navegador Tor acceda al sitio."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-"Si todavía no puedes conectar al servicio cebolla, por favor, inténtalo de "
-"nuevo más tarde. Puede haber un problema temporal de conexión, o los "
-"operadores del sitio pueden haber permitido que se caiga sin avisar."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-"También puedes asegurarte de poder acceder a otros servicios cebolla "
-"conectando al [servicio cebolla de "
-"DuckDuckGo](http://3g2upl4pq6kufc4m.onion)."
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "CONEXIONES SEGURAS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr "Aprende cómo proteger tus datos usando el Navegador Tor y HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Si la información personal, como nombre de usuario y contraseña, viaja sin "
-"ser cifrada por Internet, puede interceptarse fácilmente por cuanlquiera. Si"
-" estás iniciando sesión en un sitio web, debes asegurarte de que el sitio "
-"ofrece cifrado HTTPS, que protege contra esta clase de escuchas. Puedes "
-"verificar esto en la barra de URLs: Si tu conexión está cifrada, la "
-"dirección comenzará con “https://”, en lugar de “http://”."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "CONFIGURACIÓN DE SEGURIDAD"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "Configurar el Navegador Tor para seguridad y usabilidad"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Por defecto, el Navegador Tor protege tu seguridad encriptando tus datos de "
-"navegación."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-"Puedes aumentar aún más tu seguridad al elegir deshabilitar ciertas "
-"funciones web que se pueden usar para atacar tu seguridad y anonimato."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-"Puedes hacer esto mediante el incremento del nivel de seguridad del "
-"Navegador Tor en el menú escudo."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-"Al incrementar el nivel de seguridad del Navegador Tor algunas páginas web "
-"dejarán de funcionar apropiadamente, de manera que deberías sopesar tus "
-"necesidades de seguridad contra del grado de usabilidad que requieres."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### ACCEDER A LA CONFIGURACIÓN DE SEGURIDAD"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"Puedes acceder a la Configuración de Seguridad haciendo clic en el icono "
-"Escudo, próximo a la barra URL del Tor Browser."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Para ver y ajustar tu Configuración de Seguridad, haz clic en el botón "
-"'Configuración de Seguridad Avanzada...' en el menú escudo."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### NIVELES DE SEGURIDAD"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-"Incrementar el nivel de seguridad en la Configuración de Seguridad del Tor "
-"Browser deshabilitará total o parcialmente algunas características del mismo"
-" para protegerte contra posibles ataques."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Puedes habilitar esta configuración nuevamente, en cualquier momento, "
-"mediante el ajuste de tu nivel de seguridad."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Estándar"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"En este nivel están habilitadas todas las funcionalidades del navegador ."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Segura"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-"* Este nivel deshabilita características del sitio web que a menudo son "
-"peligrosas, lo que causa que algunos sitios pierdan funcionalidad."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* JavaScript está desactivado en todos los sitios que no sean [HTTPS](/es"
-"/secure-connections); algunas fuentes y símbolos matemáticos están "
-"desactivados; el audio y el vídeo (formato HTML5) se reproducen con un clic."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### Más segura"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-"* Este nivel permite sólo las características de sitio web requeridas para "
-"sitios estáticos y servicios básicos."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr " Estos cambios afectan a imágenes, medios, y scripts."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-"* Javascript está deshabilitado por defecto en todos los sitios; algunas "
-"fuentes, iconos, símbolos matemáticos, e imágenes están deshabilitados; "
-"audio y vídeo (medios HTML5) son hacer-clic-para-reproducir."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "ACTUALIZAR"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Cómo actualizar el Navegador Tor"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-"El Navegador Tor debe estar actualizado en todo momento. Si usas una versión"
-" obsoleta del software, te expones a graves fallos de seguridad que podrían "
-"comprometer tu privacidad y anonimato."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"El Navegador Tor te pedirá que actualices el software una vez se publique "
-"una nueva versión: El icono de Torbutton mostrará un triángulo amarillo, y "
-"podrás ver un indicador escrito de actualización cuando se abra el Navegador"
-" Tor. Puedes actualizar tanto automática como manualmente."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### ACTUALIZAR EL NAVEGADOR TOR AUTOMÁTICAMENTE"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-"Cuando te pida que actualices el Navegador Tor, haz clic en el menú "
-"hamburguesa (menú principal), luego selecciona \"Reiniciar para actualizar "
-"el navegador Tor\"."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-"Espera a que se descargue e instale la actualización, luego el Navegador Tor"
-" se reiniciará solo. Entonces estarás ejecutando la versión más reciente."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### ACTUALIZAR MANUALMENTE EL NAVEGADOR TOR"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Cuando se te pregunte para actualizar el Navegador Tor, cierra la sesión de "
-"navegación y el programa."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-"Elimina Tor de tu sistema borrando la carpeta que lo contiene (lee la "
-"sección [Desinstalar](/es/uninstalling) para más información)."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"Visita https://www.torproject.org/es/download/ y descarga una copia de la "
-"versión más reciente del Navegador Tor, luego instálala como antes."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "SOLUCIÓN DE PROBLEMAS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Qué hacer si el Navegador Tor no funciona"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Deberías poder comenzar a navegar la web usando el Navegador Tor poco "
-"después de ejecutar el programa y pulsar el botón \"Conectar\", si lo estás "
-"usando por primera vez."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### ARREGLOS RÁPIDOS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Si el Navegador Tor no se conecta, puede que haya una solución simple. "
-"Prueba una de las siguientes:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-"* El reloj de tu ordenador ha de estar configurado correctamente, o Tor no "
-"podrá conectar."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Asegúrate de que no hay otro Navegador Tor ya en marcha. Si no estás "
-"seguro, reinicia tu computadora."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-"* Asegúrate de que los programas antivirus instalados no están impidiendo "
-"que Tor se ejecute. Puede que necesites consultar la documentación de tu "
-"software antivirus si no sabes cómo hacer esto."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Deshabilita temporalmente tu cortafuegos (firewall)."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Borra el Navegador Tor e instálalo de nuevo. Si estás actualizando, no te "
-"limites a sobrescribir tus ficheros anteriores del Navegador Tor; asegúrate "
-"previamente de que han sido borrados por completo."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### ¿ESTÁ CENSURADA TU CONEXIÓN?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"Si aún no puedes conectar, tu Proveedor de Servicios de Internet (ISP) "
-"podría estar censurando las conexiones a la red Tor. Lee la sección "
-"[Elusión](/es/circumvention) en busca de posibles soluciones."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### PROBLEMAS CONOCIDOS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"El Navegador Tor está bajo desarrollo constante, y algunos problemas son "
-"conocidos pero aún no están reparados. Por favor, revisa la página de "
-"[Problemas conocidos](/es/known-issues) para ver si el problema que estás "
-"experimentando ya está listado allí."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "COMPLEMENTOS, EXTENSIONES Y JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr "Cómo maneja el Tor Browser los complementos, plugins y JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### FLASH PLAYER"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"Algunos sitios web de vídeo, como Vimeo, hacen uso del plugin Flash Player "
-"para mostrar contenido de vídeo. Desafortunadamente, este software opera de "
-"forma independiente al Navegador Tor y no se puede hacer que obedezca "
-"fácilmente a la configuración proxy del Navegador Tor, y por tanto puede "
-"revelar tu ubicación y dirección IP reales a los operadores de sitios web, o"
-" a un observador externo. Por esta razón Flash está deshabilitado por "
-"defecto en el Navegador Tor, y no se recomienda habilitarlo."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"Algunos sitios web (como YouTube) ofrecen métodos alternativos de entrega de"
-" vídeo que no usan Flash. Estos métodos pueden ser compatibles con el "
-"Navegador Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript es un lenguaje de programación que los sitios web usan para "
-"ofrecer elementos interactivos como vídeo, animación, audio, y estados en "
-"líneas de tiempo. Por desgracia, JavaScript también puede habilitar ataques "
-"a la seguridad del navegador, lo que puede llevar a la pérdida del "
-"anonimato."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"El Navegador Tor incluye un complemento llamado NoScript. Es accesible a "
-"través de 'Preferencias' en el menú hamburguesa (menú principal), luego "
-"selecciona 'Personalizar' y arrastra el icono \"S\" a la parte superior "
-"derecha de la ventana. El NoScript te permite controlar el JavaScript (y "
-"otros scripts) que se ejecutan en páginas web individuales, o bloquearlo por"
-" completo."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"Los usuarios que requieran un alto grado de seguridad en su navegación deben"
-" de configurar la [Seguridad](../security-settings) a “Segura” en el "
-"Navegador Tor (que deshabilita JavaScript para sitios web no HTTPS) o \"Más "
-"segura\" (que lo hace para todos los sitios web). Sin embargo, la "
-"desactivación de JavaScript evitará que muchos sitios web se muestren "
-"correctamente, por lo que la configuración predeterminada del Navegador Tor "
-"es permitir que todos los sitios web ejecuten scripts en el modo "
-"\"Estándar\""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### COMPLEMENTOS DE NAVEGADOR"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"El Navegador Tor está basado en Firefox, y cualquier complemento de "
-"navegador o tema decorativo que sea compatible con Firefox también se puede"
-" instalar en el Navegador Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"Sin embargo, los únicos complementos que han sido probados para su uso con "
-"el Navegador Tor son aquellos incluidos de forma predeterminada. Instalar "
-"cualquier otro complemento de navegador puede desbaratar la funcionalidad en"
-" el Navegador Tor o causar problemas más serios que afectarán a tu "
-"privacidad y seguridad. Se recomienda firmemente no instalar complementos "
-"adicionales. Además Tor Project no ofrecerá soporte para estas "
-"configuraciones."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "DESINSTALAR"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Cómo eliminar a Tor de tu sistema"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Eliminar el Navegador Tor de tu sistema es simple:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "En Windows:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-"* Localiza tu carpeta o aplicación del Navegador Tor. La ubicación habitual "
-"es en el Escritorio."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* Elimina la carpeta o aplicación del Navegador Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Vacía tu Papelera."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "En macOS:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-"* Localiza tu carpeta o aplicación del Navegador Tor. La ubicación habitual "
-"es en el directorio de Aplicaciones."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Mueve la carpeta o aplicación del Navegador Tor a la Papelera."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* Ve a la carpeta `~/Library/Application Support/`."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-"* Ten en cuenta que la carpeta \"Library\" está oculta en las últimas "
-"versiones de MacOS. Para acceder a dicha carpeta en Finder, selecciona \"Ir "
-"a la carpeta...\" en el menú \"Ir\"."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Ir "
-"a la carpeta\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-"* Ahora escribe \"~/Library/Application Support/\" en la ventana y pulsa "
-"\"Ir\"."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Ventana ir a la carpeta\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr "* Localiza la carpeta TorBrowser-Data y muévela a la Papelera."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"Ten en cuenta que si no instalaste el navegador Tor en la ubicación por "
-"defecto (la carpeta Aplicaciones), la carpeta TorBrowser-Data no estará en "
-"`~/Library/Application Support/`, sino en el mismo lugar donde instalaste el"
-" Navegador Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "En Linux:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"En Linux, no hay ubicación predeterminada; no obstante la carpeta será "
-"nombrada \"tor-browser_es-ES\" si estás ejecutando el Navegador Tor en "
-"español."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Elimina la carpeta del Navegador Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-"Ten en cuenta que no se usa la utilidad \"Desinstalar\" estándar de tu "
-"sistema operativo."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "PROBLEMAS CONOCIDOS"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Tor necesita que el reloj de tu sistema esté establecido a la hora (y zona"
-" horaria) correcta."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* Los siguientes programas de cortafuegos (firewall) se sabe que interfieren"
-" con Tor, y puede que necesites deshabilitarlos temporalmente:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus for Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Los vídeos que requieren Adobe Flash no están disponibles. Flash está "
-"deshabilitado por motivos de seguridad."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr "* Tor no puede usar un puente si tiene configurado un proxy."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* El paquete del Navegador Tor está fechado el 1 de enero de 2000, 00:00:00 "
-"UTC. Esto es para asegurar que cada versión (build) del software es "
-"reproducible con exactitud."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* Para ejecutar el Navegador Tor en Ubuntu, los usuarios necesitan ejecutar "
-"un script de consola. Abre \"Ficheros\" (explorador de Unity), "
-"\"Preferencias de archivos\" → pestaña \"Comportamiento\" → Configura "
-"\"Ejecutar los archivos de texto ejecutables al abrirlos\" a \"Preguntar "
-"siempre\", luego pulsa OK."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-"* El Navegador Tor también se puede iniciar desde la línea de comando "
-"ejecutando el siguiente comando desde el interior del directorio del "
-"Navegador Tor:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* Específicamente BitTorrent [no es anónimo sobre "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "HACER QUE EL NAVEGADOR TOR SEA PORTÁTIL"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Cómo instalar el Navegador Tor en un medio extraíble"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-"Si lo prefieres, el Navegador Tor puede hacerse portátil extrayéndolo "
-"directamente en un medio extraíble como una memoria USB o una tarjeta SD."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-"Se recomienda usar medios grabables para que se pueda actualizar el "
-"Navegador Tor cuando fuera necesario."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-"1. Conecta tu medio extraíble y formatealo. Funcionará cualquier tipo de "
-"sistema de archivos."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-"2. Navega hasta la [página de descarga](https://torproject.org/download) del"
-" Navegador Tor."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-"3. Descarga el archivo `.exe` de Windows y guárdatelo directamente en tu "
-"medio."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Recomendado) Verifica la firma de los "
-"[archivos](https://support.torproject.org/es/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-"5. Cuando la descarga esté completa, haz clic en el archivo `.exe` y "
-"comienza el proceso de instalación."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-"6. Cuando el instalador pregunte dónde instalar el Navegador Tor, selecciona"
-" tu medio extraible."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-"1. Conecta tu medio extraíble y formatealo. *Debes* usar el formato macOS "
-"Extended (Journaled)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-"3. Descarga el archivo `.dmg` de macOS y guárdalo directamente en tu medio."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-"5. Cuando la descarga esté completa, haz clic en el archivo `.dmg` y "
-"comienza el proceso de instalación."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-"3. Descarga el archivo `.tar.xz` de Linux y guárdalo directamente en tu "
-"medio."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-"5. Una vez finalizada la descarga, extrae el archivo comprimido en el medio "
-"extraible."
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "Cerrar banner"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "El rastreo, la vigilancia y la censura están muy extendidos en línea."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "RECUPEREMOS INTERNET CON TOR"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "DONA AHORA"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Dona hoy, y Mozilla igualará tu donación."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Bajarse el Navegador Tor"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"Descarga Navegador Tor para experimentar navegación privada real sin "
-"rastreo, vigilancia ni censura."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "Nuestra misión:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"Promover los derechos humanos y las libertades mediante la creación y "
-"despliegue de tecnologías de anonimato y privacidad libres y de código "
-"abierto, el apoyo a su disponibilidad y utilización sin restricciones y el "
-"fomento de su comprensión científica y popular."
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Donar"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Dona Ahora"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "Suscríbete a nuestra lista de correo"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr "Recibe noticias mensuales y oportunidades del Proyecto Tor:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "Registrarse"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"Se pueden encontrar, la marca registrada, las notas de derechos de autor, y "
-"las reglas de uso por terceras partes, en nuestra %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Menú"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Buscar"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-"La siguiente visualización muestra qué información es visible para alguien "
-"que esté espiando, tanto si usas el Navegador Tor y el cifrado HTTPS, como "
-"si no lo usas:"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-"Haz clic en el botón \"Tor\" para ver qué datos son visibles para los "
-"observadores cuando estás usando Tor. El botón se pondrá verde para indicar "
-"que Tor está activado."
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"Pulsa el botón \"HTTPS\" para ver qué datos son visibles a los observadores "
-"cuando estás usando HTTPS. El botón se pondrá verde para indicar que HTTPS "
-"está activado."
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-"Cuando ambos botones están en verde, verás los datos que son visibles para "
-"los observadores cuando estás usando ambas herramientas."
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-"Cuando ambos botones están en gris, verás los datos que son visibles para "
-"los observadores cuando no usas ninguna de las dos herramientas."
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "DATOS POTENCIALMENTE VISIBLES"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "El sitio que estás visitando."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "usuario / contraseña"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Nombre de usuario y contraseña usados para la autentificación."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "datos"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "Datos que se están transmitiendo."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "ubicación"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-"La ubicación de red del ordenador usado para visitar el sitio web (la "
-"dirección IP pública)."
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Si se está usando Tor o no."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr ""
-"Defiéndete de la vigilancia de red y el análisis de tráfico. Elude la "
-"censura."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor Project | Manual de usuario del Navegador Tor"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Temas"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Personas que han contribuido a esta página:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Edita esta página"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Sugiere cambios"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Permalink"
diff --git a/contents+fr.po b/contents+fr.po
deleted file mode 100644
index 14aacb7fa0..0000000000
--- a/contents+fr.po
+++ /dev/null
@@ -1,2667 +0,0 @@
-# Translators:
-# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
-# Nicolas Perraut <n.perraut(a)gmail.com>, 2019
-# erinm, 2019
-# Emma Peel, 2020
-# AO <ao(a)localizationlab.org>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>, 2020\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"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Guide d’utilisation du Navigateur Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "À propos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Documentation"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Presse"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Blogue"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Lettre d’information"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Assistance"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Communauté"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Contact"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "Emplois"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "À propos du Navigateur Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Téléchargement"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Premier lancement du Navigateur Tor "
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Transports enfichables"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Contournement"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Ponts"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gérer les identités"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Services onion"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Connexions sécurisées"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Paramètres de sécurité"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Mise à jour"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Greffons"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Dépannage"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Désinstallation"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Problèmes connus"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Devenir traducteur de Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Rendre le Navigateur Tor portable."
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Installation"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "À PROPOS DU NAVIGATEUR TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Découvrez ce que le Navigateur Tor peut faire pour protéger votre vie "
-"privée, vos données personnelles et votre anonymat"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-"Le Navigateur Tor utilise le réseau Tor pour protéger votre vie privée, vos "
-"données personnelles et votre anonymat. L’utilisation du réseau Tor présente"
-" deux atouts principaux :"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* Votre fournisseur d’accès à Internet ni quiconque surveille votre "
-"connexion localement ne pourra pas suivre à la trace votre activité sur "
-"Internet, y compris les noms et adresses des sites Web que vous visitez."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* Les opérateurs des sites Web et des services que vous utilisez, et "
-"quiconque les surveille, verront une connexion en provenance du réseau Tor "
-"au lieu de votre adresse (IP) réelle, et ne sauront pas qui vous êtes, sauf "
-"si vous vous identifiez explicitement."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-"De plus, le Navigateur Tor est conçu pour empêcher le pistage par empreinte "
-"numérique unique ou votre identification, par les sites Web, d’après la "
-"configuration de votre navigateur."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"Par défaut, le Navigateur Tor ne conserve aucun historique de navigation. "
-"Les témoins ne sont valides que pour une seule session (jusqu’à la fermeture"
-" du Navigateur Tor ou si une [nouvelle identité](/fr/managing-identities"
-"/#new-identity) est demandée)."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### LE FONCTIONNEMENT DE TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor est un réseau de tunnels virtuels qui vous permet d’améliorer la "
-"confidentialité, la protection de vos données personnelles et votre sécurité"
-" sur Internet. Tor fonctionne en acheminant votre trafic par trois serveurs "
-"aléatoires (aussi appelés *relais*) dans le réseau Tor. Le dernier relais du"
-" circuit (le « relais de sortie ») envoie ensuite le trafic vers l’Internet "
-"public."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../../static/images/how-tor-works.png\" alt=\"Comment "
-"fonctionne le Navigateur Tor\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"Dans l’image ci-dessus, un utilisateur navigue vers différents sites Web "
-"avec Tor. Les ordinateurs verts situés au milieu représentent les relais du "
-"réseau Tor, alors que les trois clés représentent les couches de chiffrement"
-" entre l’utilisateur et chaque relais."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "LE TÉLÉCHARGEMENT"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Comment télécharger le Navigateur Tor"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"La manière la plus sûre et la plus simple de télécharger le Navigateur Tor "
-"est de le faire à partir du site Web officiel du Projet Tor à "
-"https://www.torproject.org/fr/download/."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"Votre connexion au site sera sécurisée par [HTTPS](/fr/secure-connections) "
-"et il sera ainsi plus difficile pour quelqu’un de l’altérer."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Cependant, l’accès au site Web du Projet Tor pourrait parfois être "
-"impossible, par exemple s’il était bloqué sur votre réseau."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Si cela se produit, vous pouvez utiliser l’une des méthodes de "
-"téléchargement répertoriées ci-dessous."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### SITES MIROIRS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Si vous ne parvenez pas à télécharger le Navigateur Tor du site officiel du "
-"Projet Tor, vous pouvez plutôt essayer de le télécharger d’un de nos miroirs"
-" officiels, soit par la [FFÉ](https://tor.eff.org), l’[Institut "
-"Calyx](https://tor.calyxinstitute.org) (sites en anglais), ou "
-"[CCC](https://tor.ccc.de)."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor est un service qui répond automatiquement aux messages en incluant "
-"des liens vers la dernière version du Navigateur Tor, hébergée en divers "
-"endroits tels que les services nuagiques Dropbox et Google Drive, ou sur "
-"GitHub."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### POUR UTILISER GETTOR PAR COURRIEL :"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"Envoyez un courriel à gettor(a)torproject.org et dans le corps du message, "
-"écrivez simplement « windows », « osx » « linux » (sans guillemets) selon "
-"votre système d’exploitation."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor répondra par un courriel qui contient des liens à partir desquels "
-"vous pourrez télécharger le paquet du Navigateur Tor, la signature "
-"cryptographique (nécessaire pour contrôler le téléchargement), l’empreinte "
-"de la clé utilisée pour la signature, ainsi que la somme de contrôle du "
-"paquet. Selon le modèle d’ordinateur que vous utilisez, le choix entre un "
-"logiciel 32 bits ou 64 bits vous sera proposé."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### POUR UTILISER GETTOR PAR JABBER/XMPP (JITSI, COYIM, ETC.) :"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Pour obtenir des liens afin de télécharger le Navigateur Tor en chinois pour"
-" Linux, envoyez un message à gettor(a)torproject.org avec les mots « linux zh "
-"»."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "INSTALLATION"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Installation du Navigateur Tor"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Pour Windows :"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Naviguez vers la [page de téléchargement] du Navigateur Tor "
-"(https://www.torproject.org/fr/download)"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Téléchargez le fichier Windows `.exe`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Recommandée) Vérifiez la [signature du "
-"fichier](https://support.torproject.org/fr/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Une fois le téléchargement terminé, double-cliquez sur le fichier `.exe`."
-" Terminez l’assistant d’installation."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "Pour macOS :"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. Téléchargez le fichier macOS `.dmg`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Une fois le téléchargement terminé, double-cliquez sur le fichier `.dmg`."
-" Terminez l’assistant d’installation."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "Pour GNU/Linux :"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. Téléchargez le fichier GNU/Linux `.tar.xz`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. Une fois le téléchargement terminé, extrayez l’archive avec la commande "
-"`tar -xf [archive du NT]` ou en utilisant un gestionnaire d’archives."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. Vous devrez indiquer à votre GNU/Linux que vous voulez la possibilité "
-"d’exécuter des scripts d’interpréteur de commandes à partir de l’interface "
-"graphique."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Naviguez vers le répertoire tor-browser* nouvellement créé."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"Cliquez à droite sur `start-tor-browser.desktop`, ouvrez Propriétés ou "
-"Préférences et changez les droits pour autoriser l’exécution d’un fichier "
-"comme programme."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-"Double-cliquez sur l'icône pour lancer le Navigateur Tor pour la première "
-"fois. "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Autrement, à partir du répertoire du Navigateur Tor, vous pouvez aussi le"
-" lancer dans la ligne de commande en exécutant :"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "LE PREMIER DÉMARRAGE DU NAVIGATEUR TOR"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Découvrez comment utiliser le Navigateur Tor pour la première fois"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Quand vous lancez le Navigateur Tor pour la première fois, la fenêtre des "
-"paramètres du réseau Tor se présente à vous."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Elle vous propose l’option de vous connecter directement au réseau Tor ou de"
-" configurer le Navigateur Tor pour votre connexion."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### SE CONNECTER"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"Dans la plupart des cas, choisir « Se connecter » vous permettra de vous "
-"connecter au réseau Tor sans configuration supplémentaire."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Après avoir cliqué, une barre d’état apparaîtra, qui vous présentera la "
-"progression de la connexion de Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Si votre connexion est plutôt rapide, mais que cette barre d’état semble "
-"bloquée à un certain niveau, consultez la page "
-"[Dépannage](/fr/troubleshooting) pour y trouver de l’aide afin de régler le "
-"problème."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### CONFIGURER"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-"Si vous savez que votre connexion est censurée ou utilise un mandataire, "
-"vous devriez sélectionner cette option. Le Navigateur Tor vous présentera "
-"une série d’options de configuration."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Le premier écran demande si l’accès au réseau Tor est bloqué ou censuré sur "
-"votre connexion. Si vous ne pensez pas que c’est le cas, sélectionnez « Non "
-"». Si vous savez que votre connexion est censurée ou si vous avez tenté sans"
-" succès de vous connecter au réseau Tor et qu’aucune autre solution n’a "
-"fonctionné, sélectionnez « Oui ». L’écran "
-"[Contournement](/fr/circumvention/) apparaîtra alors afin que vous "
-"configuriez un transport enfichable."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"Le prochain écran vous demande si votre connexion utilise un mandataire. "
-"Dans la plupart des cas, ce n’est pas nécessaire. Vous saurez habituellement"
-" si vous devez répondre « Oui », car les mêmes paramètres seront utilisés "
-"pour les autres navigateurs de votre système. Si possible, posez la question"
-" à votre administrateur réseau. Si votre connexion n’utilise pas de "
-"mandataire, cliquez sur « Se connecter »."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "LE CONTOURNEMENT"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Que faire si le réseau Tor est bloqué ?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"L’accès direct au réseau Tor pourrait parfois être bloqué par votre "
-"fournisseur d’accès à Internet ou par un gouvernement."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"Le Navigateur Tor comprend des outils de contournement pour contourner ces "
-"blocages. Ces outils sont appelés « transports enfichables »."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### TYPES DE TRANSPORTS ENFICHABLES"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Actuellement, trois transports enfichables sont proposés, mais d’autres sont"
-" en cours de développement."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4 donne au trafic de Tor une apparence aléatoire et empêche aussi les "
-"censeurs de trouver des ponts en balayant Internet. Les ponts obfs4 sont "
-"moins susceptibles d’être bloqués que ses prédécesseurs, les ponts obfs3."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"Les transports meek donnent l’impression que vous parcourez un grand site "
-"Web au lieu d’utiliser Tor. meek-azure donne l’impression que vous utilisez "
-"un site Web de Microsoft."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake est une amélioration par rapport à Flashproxy. Il transmet votre "
-"trafic par WebRTC, un protocole pair à pair avec perçage intégré de trous "
-"dans la traduction d’adresses de réseau."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### UTILISER DES TRANSPORTS ENFICHABLES"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-"Pour utiliser un transport enfichable, cliquez sur « Configurer » quand le "
-"Navigateur Tor démarre pour la première fois. Dans la fenêtre qui apparaît, "
-"sélectionnez dans le menu déroulant le transport affichable que vous "
-"souhaitez utiliser."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"Ou, si le Navigateur Tor est en cours d’exécution, cliquez sur « Préférences"
-" » dans le menu ≡, puis sur « Tor » dans la barre latérale. Dans la section "
-"« Ponts », cochez la case « Utiliser un bon » et à partir du menu déroulant "
-"« Sélectionner un pont intégré », choisissez le transport enfichable que "
-"vous souhaitez utiliser."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-"Une fois que vous avez sélectionné le transport enfichable que vous "
-"souhaitez utiliser, cliquez sur « Se connecter » pour enregistrer vos "
-"paramètres."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### QUEL TRANSPORT DEVRAIS-JE UTILISER ?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-"Chaque transport répertorié dans le menu du Lanceur Tor fonctionne d’une "
-"façon différente et leur efficacité dépend de vos circonstances "
-"particulières."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-"Si vous essayez de contourner pour la première fois une connexion bloquée, "
-"vous devriez essayer les différents transports : obfs4, Snowflake et meek-"
-"azure."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-"Si vous avez essayé toutes ces options et qu’aucune ne vous permet de vous "
-"connecter, vous devrez saisir manuellement des adresses de pont."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Consultez la page [Les ponts](/fr/bridges) pour découvrir ce que sont les "
-"ponts et comment en obtenir."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "LES PONTS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"La plupart des transports enfichables tels qu’obfs4 reposent sur "
-"l’utilisation de relais-ponts."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"La plupart des [transports enfichables](/fr/circumvention) tels qu’obfs4 "
-"reposent sur l’utilisation de relais-ponts."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Comme les relais Tor ordinaires, les ponts sont gérés par des bénévoles ; "
-"cependant, contrairement aux relais ordinaires, ils ne sont pas répertoriés "
-"publiquement. Un adversaire ne peut donc pas les découvrir facilement."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"L’utilisation de ponts combinés aux transports enfichables vous aide à "
-"occulter le fait que vous utilisez Tor, mais peut ralentir la connexion par "
-"rapport aux relais Tor ordinaires."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Les autres transports enfichables tels que meek utilisent différentes "
-"techniques d’anticensure qui ne reposent pas sur des ponts. Vous n’avez pas "
-"à obtenir des adresses de pont pour utiliser ces transports."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### OBTENIR DES ADRESSES DE PONTS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Les adresses de ponts n’étant pas publiques, vous devrez les demander vous-"
-"même. Quelques options s’offrent à vous :"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-"* Visitez https://bridges.torproject.org/ et suivez les instructions ou"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Envoyez un courriel à bridges(a)torproject.org à partir d’une adresse "
-"courriel Gmail ou Riseup."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Utilisez MOAT pour récupérer des ponts à partir du Navigateur Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### UTILISER MOAT"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Si vous lancez le Navigateur Tor pour la première fois, cliquez sur « "
-"Configurer » pour ouvrir la fenêtre des paramètres du réseau Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-"Sinon, cliquez sur « Préférences » dans le menu ≡ (menu principal), puis sur"
-" « Tor » dans la barre latérale."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"Dans la fenêtre Paramètres du réseau Tor, sélectionnez « Tor est censuré "
-"dans mon pays »."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"Sélectionnez ensuite « Demander un pont à torproject.org » et cliquez sur « "
-"Demander un pont… »"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Répondez au captcha et cliquez sur « Envoyer »."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### SAISIR DES ADRESSES DE PONTS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-"Une fois que vous aurez obtenu des adresses de ponts, vous devrez les saisir"
-" dans le Lanceur Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Si vous démarrez le Navigateur Tor pour la première fois, cliquez sur « "
-"Configurer » pour ouvrir la fenêtre des paramètres du réseau Tor. Sinon, "
-"cliquez sur « Préférences » dans le menu ≡ (menu principal), puis sur « Tor "
-"» dans la barre latérale pour accéder à ces options."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"Dans la section « Ponts », cochez « Utiliser un pont », puis sélectionnez « "
-"Utiliser un pont que je connais » et saisissez chaque adresse de pont sur "
-"une ligne séparée."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Si la connexion échoue, les ponts que vous avez reçus pourraient être hors "
-"service. Veuillez utiliser l’une des méthodes ci-dessus afin d’obtenir "
-"d’autres adresses de ponts, puis ressayez."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "GÉRER LES IDENTITÉS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Découvrez comment contrôler, dans le Navigateur Tor, les renseignements qui "
-"permettent d’identifier quelqu’un"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Quand vous vous connectez à un site Web, les opérateurs de ce site Web ne "
-"sont pas les seuls à pouvoir enregistrer les informations concernant votre "
-"visite. La plupart des sites Web utilisent maintenant de nombreux services "
-"tiers, incluant les boutons « J’aime » du réseautage social, les systèmes de"
-" suivi analytique et les balises publicitaires qui peuvent tous associer "
-"votre activité d’un site à l’autre."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"L’utilisation du réseau Tor empêche ceux qui vous observent de découvrir "
-"votre emplacement géographique exact et votre adresse IP, mais même sans ces"
-" renseignements, ils pourraient associer différents aspects de votre "
-"activité. Pour cette raison, le Navigateur Tor comprend des fonctions "
-"supplémentaires qui vous aident à contrôler les renseignements qui peuvent "
-"être liés à votre identité."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### LA BARRE D’URL"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Le Navigateur Tor centre votre expérience Web sur votre relation avec le "
-"site Web dans la barre d’URL. Même si vous vous connectez à deux sites "
-"différents qui utilisent le même service tiers de pistage, le Navigateur Tor"
-" obligera que le contenu soit servi par deux circuits Tor différents, et "
-"ainsi le service de pistage ne saura pas que les deux connexions proviennent"
-" de votre navigateur."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"Par ailleurs, toutes les connexions vers une même adresse de site Web seront"
-" acheminées par le même circuit Tor, ce qui signifie que vous pouvez "
-"parcourir différentes pages d’un même site Web dans des onglets ou des "
-"fenêtres différents sans perte de fonctionnalité."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-"Vous pouvez voir un diagramme du circuit que le Navigateur Tor utilise pour "
-"l’onglet actuel dans le menu des informations du site, dans la barre d’URL."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"Dans le circuit, le nœud de garde ou d’entrée est le premier nœud. Il est "
-"automatiquement et aléatoirement sélectionné par Tor. Mais il est différent "
-"des autres nœuds du circuit. Afin d’éviter les attaques par profilage, le "
-"nœud de garde ne change qu’après 2 à 3 mois, contrairement aux autres nœuds "
-"qui changent pour chaque nouveau domaine. Pour plus de précisions sur les "
-"gardes, consultez la [FAQ](https://www.torproject.org/docs/faq#EntryGuards) "
-"(site en anglais) et le [Portail "
-"d’assistance](https://support.torproject.org/fr/tbb/tbb-2/)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### SE CONNECTER AVEC TOR"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Bien que le Navigateur Tor est conçu pour permettre l’anonymat absolu de "
-"l’utilisateur sur le Web, certaines situations pourraient justifier "
-"d’utiliser Tor avec des sites Web qui exigent des noms d’utilisateur, des "
-"mots de passe ou d’autres renseignements qui permettent de vous identifier."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Si vous vous connectez à un site Web en utilisant un navigateur ordinaire, "
-"vous divulguez aussi votre adresse IP et votre emplacement géographique ce "
-"faisant. C’est souvent aussi le cas quand vous envoyez un courriel. En vous "
-"connectant à vos comptes de réseautage social ou de courriel en utilisant le"
-" Navigateur Tor, vous pouvez choisir exactement les renseignements que vous "
-"divulguez aux sites Web que vous parcourez. Il est aussi utile de vous "
-"connecter avec le Navigateur Tor si le site Web que vous tentez de joindre "
-"est censuré sur votre réseau."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Quand vous vous connectez à un site Web en utilisant Tor, vous devriez "
-"garder à l’esprit plusieurs considérations :"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Consultez la page [Les connexions sécurisées](/fr/secure-connections/) "
-"pour obtenir des renseignements importants sur la façon de sécuriser votre "
-"connexion lors d’une authentification."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Avec le Navigateur Tor, votre connexion semble souvent provenir d’une "
-"partie du monde totalement différente. Certains sites Web tels que les "
-"banques et les services de courriel pourraient l’interpréter comme un signe "
-"que votre compte a été piraté ou compromis et vous interdire l’accès. La "
-"seule façon de résoudre ce problème est en suivant la procédure de "
-"récupération de compte recommandée par le site, ou en contactant les "
-"opérateurs des sites et en expliquant la situation."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### CHANGER LES IDENTITÉS ET CIRCUITS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"Le Navigateur Tor propose les options « Nouvelle identité » et « Nouveau "
-"circuit Tor pour ce site ». Elles sont situées dans le menu principal ≡."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### NOUVELLE IDENTITÉ"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Cette action est utile si vous souhaitez empêcher que l’activité ultérieure "
-"de votre navigateur ne puisse être reliée à ce que vous faisiez auparavant. "
-"En la sélectionnant, tous vos fenêtres et onglets ouverts seront fermés, "
-"tous les renseignements confidentiels tels que les témoins et l’historique "
-"de navigation seront effacés, et de nouveaux circuits Tor seront utilisés "
-"pour toutes les connexions. Le Navigateur Tor vous avertira de l’arrêt de "
-"tous les téléchargements et activités. Prenez-le donc en compte avant de "
-"cliquer sur « Nouvelle identité »."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-"Pour utiliser cette option, vous devez simplement cliquer sur « Nouvelle "
-"identité » dans la barre d’outils du Navigateur Tor."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### NOUVEAU CIRCUIT TOR POUR CE SITE"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"Cette option est utile si le [relais de sortie](/fr/about/#le-"
-"fonctionnemment-de-tor) que vous utilisez n’arrive pas à se connecter au "
-"site Web dont vous avez besoin ou ne le charge pas correctement. En la "
-"sélectionnant, la fenêtre ou l’onglet actif sera rechargé sur un nouveau "
-"circuit Tor. Les autres fenêtres et onglets ouverts du même site Web "
-"utiliseront aussi le nouveau circuit quand ils seront rechargés. Cette "
-"option n’efface aucun renseignement personnel, ni ne dissocie votre "
-"activité, ni n’affectera vos connexions actuelles à d’autres sites Web."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-"Vous pouvez aussi accéder à cette option dans le nouvel affichage du "
-"circuit, dans le menu des informations du site, dans la barre d’URL."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "LES SERVICES ONION"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Services qui ne sont accessibles qu’en utilisant Tor"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Les services onion (anciennement « services cachés ») sont des services "
-"(tels que des sites Web) qui ne sont accessibles que par le réseau Tor."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"Les services onion offrent plusieurs avantages par rapport aux services "
-"ordinaires du Web non privé :"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* L’emplacement géographique et l’adresse IP d’un service onion sont cachés,"
-" et il est donc difficile pour ses adversaires de le censurer ou "
-"d’identifier ses opérateurs."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Tout le trafic entre les utilisateurs de Tor et les services onion est "
-"chiffré de bout en bout, vous n’avez donc pas à vous soucier de vous "
-"[connecter par HTTPS](/fr/secure-connections)."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* L’adresse d’un service onion est générée automatiquement, donc les "
-"opérateurs n’ont pas à acheter un nom de domaine ; l’URL .onion aide aussi "
-"Tor à s’assurer qu’il se connecte au bon endroit et que la connexion n’est "
-"pas altérée."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### COMMENT ACCÉDER À UN SERVICE ONION"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Comme tout autre site Web, vous devrez connaître l’adresse d’un service "
-"onion afin de vous y connecter. Une adresse onion est une chaîne de 16 "
-"lettres et chiffres (ou 56 en format V3) essentiellement aléatoires, suivie "
-"par « .onion »."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"Lors de l’accès à un site Web qui utilise un service onion, le Navigateur "
-"Tor affichera dans la barre d’URL l’icône d’un petit oignon vert qui affiche"
-" l’état de votre connexion: sécurisée et qui utilise un service onion. Et si"
-" vous accédez à un site Web avec HTTPS et un service onion, il affichera "
-"l’icône d’un oignon vert et un cadenas."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### DÉPANNAGE"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"Si vous ne pouvez pas atteindre le service onion dont vous avez besoin, "
-"assurez-vous d’avoir correctement saisi l’adresse onion : même une petite "
-"erreur empêchera le Navigateur Tor d’atteindre le site."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-"Si vous n’arrivez toujours pas à vous connecter au service onion, veuillez "
-"ressayer ultérieurement. Il pourrait y avoir un problème temporaire de "
-"connexion ou les opérateurs du site pourraient l’avoir désactivé sans "
-"avertissement."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"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 [service onion de "
-"DuckDuckGo](http://3g2upl4pq6kufc4m.onion/)."
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "LES CONNEXIONS SÉCURISÉES"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr ""
-"Découvrez comment protéger vos données en utilisant le Navigateur Tor et "
-"HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Si des renseignements personnels tels que des mots de passe de connexion "
-"voyagent sur Internet sans chiffrement, ils pourraient facilement être "
-"interceptés par des systèmes d’écoute. Si vous vous identifiez à des sites "
-"Web, vous devriez vous assurer que ces sites offrent le chiffrement HTTPS, "
-"chiffrement qui vous protège contre ce genre d’écoute. Vous pouvez le "
-"vérifier dans la barre d’URL : si votre connexion est chiffrée, l’adresse "
-"commencera par « https:// » plutôt que par « http:// »."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "LES PARAMÈTRES DE SÉCURITÉ"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "Configurez le Navigateur Tor pour la sécurité et la facilité d’emploi"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Par défaut, le Navigateur Tor protège votre sécurité en chiffrant vos "
-"données de navigation."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-"Vous pouvez encore augmenter votre sécurité en choisissant de désactiver "
-"certaines fonctions Web qui peuvent être utilisées pour attaquer votre "
-"sécurité et votre anonymat."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-"À partir du menu du bouclier, vous pouvez le faire en augmentant le niveau "
-"de sécurité du Navigateur Tor dans les Paramètres de sécurité avancés."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-"Augmenter le niveau de sécurité du Navigateur Tor empêchera le bon "
-"fonctionnement de certaines pages Web, et vous devriez évaluer vos besoins "
-"de sécurité par rapport au degré de facilité d’emploi dont vous avez besoin."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### ACCÉDER AUX PARAMÈTRES DE SÉCURITÉ"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"Vous pouvez accéder aux paramètres de sécurité en cliquant sur l’icône de "
-"bouclier située à côté de la barre d’URL du Navigateur Tor."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Pour afficher et régler vos paramètres de sécurité, cliquez sur le bouton « "
-"Paramètres de sécurité avancés… » dans le menu du bouclier."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### NIVEAUX DE SÉCURITÉ"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-"Augmenter le niveau de sécurité dans les paramètres de sécurité du "
-"Navigateur Tor désactivera ou désactivera partiellement certaines fonctions "
-"du navigateur afin de vous protéger contre des attaques possibles."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Vous pouvez réactiver ces paramètres à tout moment en ajustant votre niveau "
-"de sécurité."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Normal"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"* À ce niveau, toutes les fonctions du Navigateur Tor et des sites Web sont "
-"activées."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Plus sûr"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-"* Ce niveau désactive les fonctions souvent dangereuses des sites Web, ce "
-"qui pourrait entraîner une perte de fonctionnalité de certains sites Web."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* JavaScript est désactivé sur tous les sites non [HTTPS](/fr/secure-"
-"connections) ; certaines polices et certains symboles mathématiques sont "
-"désactivés ; le son et la vidéo (médias HTML5) sont « cliquer pour lire »."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### Le plus sûr"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-"* Ce niveau n’autorise que les fonctions de sites Web exigées pour les sites"
-" statiques et les services de base."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr "Ces changements affectent les images, les médias et les scripts."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-"* JavaScript est désactivé par défaut sur tous les sites ; certaines "
-"polices, icônes, images et certains symboles mathématiques sont désactivés ;"
-" le son et la vidéo (médias HTML5) sont « cliquer pour lire »."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "LA MISE À JOUR"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Mettre le Navigateur Tor à jour"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-"Le Navigateur Tor doit toujours être gardé à jour. Si vous continuez à "
-"utiliser une version désuète du logiciel, vous pourriez être vulnérable à de"
-" graves failles de sécurité qui compromettent la protection de vos données "
-"personnelles et votre anonymat."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"Le Navigateur Tor vous demandera de mettre à jour le logiciel quand une "
-"nouvelle version sera proposée : l’icône du BoutonTor affichera un triangle "
-"jaune, et un indicateur écrit de mise à jour pourrait apparaître lors du "
-"démarrage du Navigateur Tor. Vous pouvez effectuer la mise à jour "
-"automatiquement ou manuellement."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### MISE À JOUR AUTOMATIQUE DU NAVIGATEUR TOR"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-"Si l’on vous demande de mettre à jour le Navigateur Tor, cliquez sur le menu"
-" ≡, puis sur « Redémarrer pour mettre à jour le Navigateur Tor »."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-"Attendez la fin du téléchargement et de l’installation, puis le Navigateur "
-"Tor redémarrera. Vous utiliserez alors la version la plus récente."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### MISE À JOUR MANUELLE DU NAVIGATEUR TOR"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Quand on vous demande de mettre à jour le Navigateur Tor, terminez la "
-"session de navigation et fermez le programme."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-"Enlevez le Navigateur Tor de votre système en supprimant le dossier qui le "
-"comprend (consultez le page [La désinstallation](/fr/uninstalling) pour plus"
-" de précisions)."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"Visitez https://www.torproject.org/fr/download/, téléchargez la version la "
-"plus récente du Navigateur Tor et installez-la comme avant."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "DÉPANNAGE"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Que faire si le Navigateur Tor ne fonctionne pas ?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Vous devriez pouvoir commencer à parcourir la Toile avec le Navigateur Tor "
-"peu de temps après avoir lancé le programme et avoir cliqué sur le bouton « "
-"Se connecter » si vous l’utilisez pour la première fois."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### SOLUTIONS RAPIDES"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Si le Navigateur Tor ne se connecte pas, il existe peut-être une solution "
-"simple. Essayez chacune des suivantes :"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-"* L’horloge système de votre ordinateur doit être ajustée correctement ou "
-"Tor ne pourra pas se connecter."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Assurez-vous qu’un autre Navigateur Tor n’est pas déjà en cours "
-"d’exécution. Si vous n’en êtes pas certain, redémarrez votre ordinateur."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-"* Assurez-vous qu’un antivirus que vous avez installé n’empêche pas Tor de "
-"fonctionner. Si vous ne savez pas comment le faire, consultez la "
-"documentation de votre antivirus."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Désactivez temporairement votre pare-feu."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Supprimez le Navigateur Tor et réinstallez-le. Si vous procédez à une mise"
-" à jour, n’écrasez pas simplement vos anciens fichiers du Navigateur Tor ; "
-"assurez-vous de les supprimer complètement avant."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### VOTRE CONNEXION EST-ELLE CENSURÉE ?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"Si vous ne pouvez toujours pas vous connecter, il est possible que votre "
-"fournisseur d’accès à Internet censure les connexions vers le réseau Tor. "
-"Consultez la page [Le contournement](/fr/circumvention) pour découvrir des "
-"solutions possibles."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### PROBLÈMES CONNUS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"Le Navigateur Tor évolue constamment et certains problèmes sont connus, mais"
-" n’ont pas encore été corrigés. Veuillez vous référer à la page [Les "
-"problèmes connus](/fr/known-issues) pour vérifier si le problème que vous "
-"rencontrez n’y est pas déjà répertorié."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "LES GREFFONS, LES MODULES COMPLÉMENTAIRES ET JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr ""
-"La gestion des modules complémentaires, des greffons et de JavaScript par le"
-" Navigateur Tor "
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### LECTEUR FLASH"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"Les sites Web de vidéos tels que Vimeo utilisent le greffon du lecteur Flash"
-" pour afficher les contenus vidéo. Malheureusement, ce logiciel fonctionne "
-"indépendamment du Navigateur Tor et il est difficile de le faire obéir aux "
-"paramètres de mandataire du Navigateur Tor. Il peut par conséquent divulguer"
-" vos position et adresse IP réelles aux opérateurs du site Web ou à un "
-"observateur extérieur. C’est pour cela que Flash est désactivé par défaut "
-"dans le Navigateur Tor, et il n’est pas recommandé de l’activer."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"Certains sites Web vidéo (tels que YouTube) offrent d’autres méthodes de "
-"livraison des vidéos qui n’utilisent pas Flash. Ces méthodes pourraient être"
-" compatibles avec le Navigateur Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript est un langage de programmation que les sites Web utilisent pour "
-"offrir des éléments interactifs tels que la vidéo, les animations, le son et"
-" les états de progression. Malheureusement, JavaScript permet aussi "
-"d’attaquer la sécurité du navigateur, ce qui pourrait compromettre "
-"l’anonymisation."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"Le Navigateur Tor comprend une extension appelée NoScript. Vous pouvez y "
-"accéder par le menu ≡, « Préférences », puis en sélectionnant « "
-"Personnaliser » et en glissant l’icône « S » en haut à droite de la fenêtre."
-" NoScript vous permet de contrôler le JavaScript (et autres scripts) exécuté"
-" par les différentes pages Web, ou de le bloquer complètement. "
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"Les utilisateurs qui exigent un niveau de sécurité élevé quand ils "
-"parcourent le Web devraient régler [le niveau de sécurité](../security-"
-"settings/) du Navigateur Tor à « Plus sûr » (ce qui désactive le JavaScript "
-"pour les sites Web non HTTPS) ou « Le plus sûr » (ce qui le fait pour tous "
-"les sites Web). Cependant, la désactivation de JavaScript empêchera de "
-"nombreux sites Web de s’afficher correctement, et c’est pourquoi le "
-"paramètre par défaut du Navigateur Tor permet à tous les sites Web "
-"d’exécuter des scripts en mode « Normal »."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### MODULES COMPLÉMENTAIRES DU NAVIGATEUR"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"Le Navigateur Tor est fondé sur Firefox et tout module complémentaire ou "
-"thème compatible avec Firefox peut aussi être installé dans le Navigateur "
-"Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"Cependant, les modules complémentaires qui ont été testés pour être utilisés"
-" avec le Navigateur Tor sont ceux inclus par défaut. L’installation de tout "
-"autre module complémentaire pourrait briser la fonctionnalité du Navigateur "
-"Tor ou poser des problèmes plus graves qui affectent la protection de vos "
-"données personnelles et la sécurité. Il est fortement déconseillé "
-"d’installer d’autres modules complémentaires et le Projet Tor n’offrira "
-"aucun soutien pour les configurations qui en utilisent."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "LA DÉSINSTALLATION"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Supprimer le Navigateur Tor de votre système"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Il est simple de supprimer le Navigateur Tor de votre système :"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "Sur Windows :"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-"* Trouvez votre dossier « Tor Browser » ou l’application du Navigateur Tor. "
-"L’emplacement par défaut est le Bureau."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* Supprimez le dossier ou l’application du Navigateur Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Videz votre corbeille."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "Sur macOS :"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-"* Trouvez votre application du Navigateur Tor. L’emplacement par défaut est "
-"le dossier Applications."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Déplacez l’application Navigateur Tor dans la corbeille."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* Accédez à votre dossier `~/Bibliothèque/Application Support/`."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-"* Notez que le dossier Bibliothèque est caché sur les versions les plus "
-"récentes de macOS. Pour naviguer vers ce dossier dans Finder, sélectionnez «"
-" Aller au dossier… » dans le menu « Aller »."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" "
-"alt=\"Accédez à l’option de menu du dossier.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-"* Tapez ensuite `~/Bibliothèque/Application Support/` dans la fenêtre, puis "
-"cliquez sur Aller"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Accédez à la fenêtre du dossier.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr ""
-"* Trouvez le dossier TorBrowser-Data et déplacez-le vers la corbeille."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"Notez que si vous n’avez pas installé le Navigateur Tor dans l’emplacement "
-"par défaut (le dossier Applications), le dossier TorBrowser-Data ne se "
-"trouvera alors pas dans le dossier `~/Bibliothèque/Application Support/`, "
-"mais plutôt dans le même dossier où vous avez installé le Navigateur Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "Sur Linux :"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* Trouvez votre dossier du Navigateur Tor. Sous Linux, il n’y a pas "
-"d’emplacement par défaut, cependant le dossier s’appellera « tor-browser_fr "
-"» si vous utilisez le Navigateur Tor en français."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Supprimez le dossier du Navigateur Tor."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-"Notez que l’utilitaire habituel de désinstallation de votre système "
-"d’exploitation n’est pas utilisé."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "LES PROBLÈMES CONNUS"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Tor exige que votre horloge système soit réglée à l’heure juste (et que "
-"votre fuseau horaire soit bien défini)."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* Les logiciels pare-feu suivants sont reconnus pour interférer avec Tor et "
-"il pourrait être nécessaire de les désactiver temporairement :"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus pour Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Les vidéos qui exigent Flash d’Adobe ne sont pas proposées. Flash est "
-"désactivé pour des raisons de sécurité."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr "* Tor ne peut pas utiliser un pont si un mandataire est défini."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* Le paquet du Navigateur Tor est daté janvier 1er, 2000 00:00:00 UTC, cela "
-"afin de garantir que chaque version du logiciel est exactement "
-"reproductible."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* Pour exécuter le Navigateur Tor sur Ubuntu, les utilisateurs doivent "
-"exécuter un script en ligne de commande. Ouvrez « Fichiers » (le "
-"gestionnaire de fichiers d’Unity), puis Préférences → onglet Comportement → "
-"définissez « Fichiers texte exécutables » à « Demander quoi faire », puis "
-"fermez la fenêtre de dialogue."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-"* Le Navigateur Tor peut aussi être lancé à partir de la ligne de commande "
-"en exécutant la commande suivante dans le répertoire du Navigateur Tor :"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* BitTorrent, en particulier, [n’est pas anonyme avec "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea) (page "
-"en anglais)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "RENDRE LE NAVIGATEUR TOR PORTABLE"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Installer le Navigateur Tor sur un support amovible"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-"Si vous le préférez, le Navigateur Tor peut être rendu portable en extrayant"
-" directement son archive sur un support amovible tel qu’une clé USB ou une "
-"carte SD."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-"Il est recommandé d’utiliser un support inscriptible afin que le Navigateur "
-"Tor puisse se mettre à jour si nécessaire."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-"1. Branchez votre support amovible et formatez-le. Tous les types de "
-"systèmes de fichiers fonctionneront."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-"2. Accédez à la [page de téléchargement](https://torproject.org/fr/download)"
-" du Navigateur Tor"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-"3. Téléchargez le fichier Windows `.exe` et enregistrez-le directement sur "
-"votre support."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Recommandé) Vérifiez la [signature des "
-"fichiers](https://support.torproject.org/fr/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-"5. Une fois le téléchargement terminé, cliquez sur le fichier `.exe` et "
-"lancez le processus d’installation."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-"6. Quand le programme d’installation demande où installer le Navigateur Tor,"
-" sélectionnez votre support amovible."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-"1. Branchez votre support amovible et formatez-le. Vous *devez* utiliser le "
-"format Mac OS étendu (journalisé) "
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-"3. Téléchargez le fichier macOS `.dmg` et enregistrez-le directement sur "
-"votre support."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-"5. Une fois le téléchargement terminé, cliquez sur le fichier `.dmg` et "
-"lancez le processus d’installation."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-"3. Téléchargez le fichier Linux `.tar.xz` et enregistrez-le directement sur "
-"votre support."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-"5. Une fois le téléchargement terminé, extrayez aussi l’archive sur le "
-"support."
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "Fermer le bandeau"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr ""
-"Le pistage, la surveillance et la censure sont très répandus sur Internet."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "AVEC TOR, RÉAPPROPRIEZ-VOUS INTERNET"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "FAITES UN DON MAINTENANT"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Faites un don aujourd’hui et Mozilla fera un don équivalent."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Télécharger le Navigateur Tor"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"Téléchargez le Navigateur Tor afin de découvrir une navigation qui protège "
-"vraiment votre vie privée et vos données personnelles, sans pistage, ni "
-"surveillance, ni censure."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "Notre mission :"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"Faire progresser les droits de la personne et les libertés en créant et en "
-"déployant des technologies gratuites d’anonymat et de protection de la vie "
-"privée et des données personnelles, à code source ouvert. Nous soutenons "
-"aussi leur disponibilité et leur utilisation sans restriction en les faisant"
-" mieux connaître des scientifiques et du public."
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Faire un don"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Faire un don maintenant"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "S’abonner à notre lettre d’information"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr ""
-"Recevez les mises à jour mensuelles du Projet Tor et les occasions qu’il "
-"offre :"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "S’abonner"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"Les avis de marque de commerce, de droit d’auteur et les règles "
-"d’utilisation par des tiers se trouvent dans notre %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Menu"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Chercher"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-"La visualisation suivante montre quels renseignements sont visibles pour les"
-" systèmes d’écoute avec et sans le Navigateur Tor ni le chiffrement HTTPS :"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-"Cliquez sur le bouton « Tor » pour voir quelles données les observateurs "
-"peuvent voir quand vous utilisez Tor. Le bouton deviendra vert pour indiquer"
-" que Tor est activé."
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"Cliquez sur le bouton « HTTPS » pour voir quelles données les observateurs "
-"peuvent voir quand vous utilisez HTTPS. Le bouton deviendra vert pour "
-"indiquer que HTTPS est activé."
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-"Quand les deux boutons sont verts, vous voyez les données visibles pour les "
-"observateurs quand vous utilisez les deux outils."
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-"Quand les deux boutons sont gris, vous voyez les données visibles pour les "
-"observateurs quand vous n’utilisez aucun des deux outils."
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "DONNÉES POTENTIELLEMENT VISIBLES"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "Le site que vous visitez."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "user / pw"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr ""
-"Le nom d’utilisateur et le mot de passe utilisés pour l’authentification."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "données"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "Les données qui sont transmises."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "emplacement"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-"L’emplacement sur le réseau de l’ordinateur utilisé pour visiter le site Web"
-" (l’adresse IP publique)."
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Si Tor est utilisé ou non."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr ""
-"Défendez-vous contre le pistage et la surveillance. Contournez la censure."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Le Projet Tor | Guide d’utilisation du Navigateur Tor"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Sujets"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Contributeurs à cette page :"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Modifier cette page"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Laisser une rétroaction"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Permalien"
diff --git a/contents+it.po b/contents+it.po
deleted file mode 100644
index a5abf52932..0000000000
--- a/contents+it.po
+++ /dev/null
@@ -1,2634 +0,0 @@
-# Translators:
-# Lorenzo Mazza <lor.mazza81(a)outlook.com>, 2019
-# Gabriele <gabboxl0(a)gmail.com>, 2019
-# mattia_b89 <mattia.b89(a)gmail.com>, 2019
-# Hiro 7 <hiro(a)torproject.org>, 2019
-# Fabio Ottone, 2019
-# erinm, 2019
-# SebastianoPistore <SebastianoPistore.info(a)protonmail.ch>, 2019
-# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2019
-# Thomas Di Cristofaro <inactive+ThomasDiCristofaro(a)transifex.com>, 2019
-# Luke <94lukecatellani(a)gmail.com>, 2019
-# fabio carletti <fabiocarlettiryuw(a)gmail.com>, 2019
-# Emma Peel, 2020
-# Random_R, 2020
-# Davide Sant <spuuu(a)outlook.it>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Davide Sant <spuuu(a)outlook.it>, 2020\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"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Manuale utente del browser Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Informazioni"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Documentazione"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Stampa"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Blog"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Newsletter"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Supporto"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Comunità"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Contatti"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "Lavori"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Informazioni su Tor Browser"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Download"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Avviare il browser Tor per la prima volta"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Pluggable transports"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Elusione"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Ponti"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gestire le identità"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Servizi onion"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Connessioni sicure"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Impostazioni di sicurezza"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Aggiorna"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Plugins"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Risoluzione dei problemi"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Disinstalla"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Problemi conosciuti"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Diventare un traduttore Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Rendere Tor Browser portatile"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Installazione"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "INFORMAZIONI SU TOR BROWSER"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Impara cosa può fare il browser Tor per proteggere la tua privacy e il tuo "
-"anonimato"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-"Tor Browser utilizza la rete Tor per proteggere la tua privacy e anonimato. "
-"L'utilizzo della rete Tor ha due caratteristiche principali:"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* Il tuo provider di servizi internet, e chiunque sorvegli localmente la tua"
-" connessione, non sarà in grado di tener traccia della tua attività on-line,"
-" inclusi i nomi e gli indirizzi dei siti che visiti."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* Gli operatori dei siti internet e dei servizi che utilizzi, e chiunque li "
-"controlli, vedranno una connessione in entrata dalla rete Tor invece del tuo"
-" indirizzo internet (IP) reale, e non sapranno la tua identità a meno che tu"
-" non intenda identificarti esplicitamente."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-"In più, il browser Tor è progettato per evitare che i siti ti identifichino "
-"in base alla configurazione del tuo browser (fingerprint)."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"Di base il browser di Tor non tiene traccia della navigazione. I file "
-"temporanei sono validi solo per la sessione corrente (fino all'uscita del "
-"browser o fino alla richiesta di una [Nuova identità](/it/managing-"
-"identities/#new-identity))."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### COME FUNZIONA TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor è una rete di tunnel virtuali che ti permette di migliorare la privacy e"
-" la sicurezza in rete. Tor agisce inviando il tuo traffico attraverso tre "
-"server scelti a caso (anche noti come *relay*) nella rete Tor. Sarà quindi "
-"l'ultimo relay del circuito (detto \"relay d'uscita\") a inviare il traffico"
-" sulla rete pubblica."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../../static/images/how-tor-works.png\" alt=\"Come "
-"funziona Tor\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"L'immagine qui sopra rappresenta un utente che visita diversi siti web "
-"utilizzando Tor. I computer verdi nel mezzo rappresentano dei relay nel "
-"network Tor, mentre le tre chiavi rappresentano i livelli di cifratura tra "
-"l'utente e ogni relay."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "DOWNLOAD"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Come scaricare il browser Tor"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"La via più sicura e semplice per scaricare Tor Browser è attraverso il sito "
-"ufficiale di Tor Project: https://www.torproject.org/it/download."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"La tua connessione al sito sarà protetta usando [HTTPS](/it/secure-"
-"connections), che ne rende la manomissione molto più difficile."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Comunque, ci potrebbero essere dei casi in cui non ti sarà possibile "
-"accedere al sito web di Tor: per esempio, potrebbe essere bloccato sulla tua"
-" rete."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Se ciò accade, puoi utilizzare uno dei metodi di download alternativi "
-"elencati qui sotto."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### MIRRORS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Se non riesci a scaricare Tor Browser dal sito ufficiale del Tor Project, "
-"puoi provare a scaricarlo da uno dei nostri mirror ufficiali, tramite "
-"[EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) o [CCC](https://tor.ccc.de)."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor è un servizio che risponde automaticamente ai messaggi con link "
-"all'ultima versione di Tor Browser, ospitata in vari luoghi, come Dropbox, "
-"Google Drive e GitHub."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### PER USARE GETTOR CON EMAIL:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"Invia una mail a gettor(a)torproject.org, e nel corpo del messaggio scrivi "
-"semplicemente \"windows\", \" osx\" o \"linux\" (senza virgolette) a seconda"
-" del sistema operativo che stai utilizzando."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor risponderà con una mail contenente il link da dove scaricare il "
-"browser Tor, la firma criptografica (necessaria per verificare il download),"
-" l'impronta digitale della chiave utilizzata per generare la firma digitale "
-"e il codice di controllo del pacchetto. Potrete scegliere tra programma a "
-"\"32-bit\" o \"64-bit\"; questo dipenderà dal modello di computer che state "
-"usando."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### PER USARE GETTOR CON JABBER/XMPP (JITSI, COYIM, ECC.):"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Per ottenere il link per scaricare il browser Tor in cinese per Linux, manda"
-" un messaggio a gettor(a)torproject.org con le parole \"linux zh\" "
-"all'interno."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "INSTALLAZIONE"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Installare Tor Browser"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Per Windows:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Naviga alla [pagina di download](https://www.torproject.org/it/download) "
-"di Tor Browser."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Scarica il file Windows `.exe`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Raccomandato) Verifica la [firma del "
-"file](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Al termine del download, fai doppio click sul file `.exe`. Completa la "
-"procedura guidata di installazione."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "Per macOS:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. Scarica il file macOS `.dmg`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Al termine del download, fai doppio click sul file `.dmg`. Completa la "
-"procedura guidata di installazione."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "Per GNU/Linux:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. Scarica il file GNU/Linux `.tar.xz`"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. Al termine del download, estrai l'archivio con il comando `tar -xf [TB "
-"archive]` o utilizzando un gestore di archivi."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. Dovrai dire al tuo GNU/Linux che vuoi l'abilità di eseguire shell script "
-"dall'interfaccia grafica. "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Naviga nella directory Tor Browser appena estratta. "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"Clicca con il tasto destro del mouse su `start-tor-browser.desktop`, apri "
-"Proprietà o Preferenze e cambia il permesso per consentire l'esecuzione del "
-"file come programma. "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-"Fai doppio click sull'icona per avviare Tor Browser per la prima volta. "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Alternativamente, dall'interno della directory Tor Browser, puoi anche "
-"avviarlo da riga di comando eseguendo:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "AVVIARE TOR BROWSER PER LA PRIMA VOLTA"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Come usare il browser Tor per la prima volta"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Quando avvii Tor Browser per la prima volta, vedrai la finestra Impostazioni"
-" di Rete Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Questa finestra ti offre la possibilità di connetterti direttamente alla "
-"rete Tor o di configurare Tor Browser per la tua connessione."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### CONNETTITI"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"Nella maggior parte dei casi, cliccare \"Connetti\" ti consentirà di "
-"connetterti alla rete Tor senza ulteriori configurazioni."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Una volta cliccato, apparirà una barra di stato recante l'avanzamento della "
-"connessione di Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Se stai utilizzando una connessione relativamente veloce, ma questa barra a "
-"un certo punto sembra bloccarsi, guarda la pagina [Risoluzione "
-"problemi](/it/troubleshooting) per ricevere assistenza. "
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### CONFIGURA"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-"Se sapete che la vostra connessione è censurata, o utilizza un proxy, "
-"scegliete questa opzione. Il browser Tor vi guiderà attraverso una serie di "
-"opzioni di configurazione."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"La prima schermata chiede se l'accesso alla rete Tor è bloccato o censurato "
-"nella tua connessione. Se non è questo il tuo caso scegli \"No\". Se te già "
-"sai che la rete è censurata, o la connessione alla rete Tor è fallita, "
-"scegli \"SI\". Sarai reindirizzato alla schermata "
-"[Elusione](/it/circumvention) per configurare una via di connessione "
-"differente (pluggable transport)."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"La schermata seguente vi domanderà se la vostra connessione utilizza un "
-"proxy. Nella maggior parte dei casi questo non è necessario. Dovreste sapere"
-" se rispondere \"Sì\", in quanto sono gli stessi parametri utilizzati dagli "
-"altri browser internet sul vostro sistema. Se possibile, contattate il "
-"vostro amministratore di sistema per informazioni. Se la vostra connessione "
-"non usa proxy cliccate \"Continua\"."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "ELUSIONE"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Cosa fare se il network Tor è bloccato"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"L'accesso diretto alla rete Tor a volte può essere bloccato dal fornitore di"
-" servizi Internet o da un governo."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"Tor Browser include alcuni strumenti di elusione per aggirare questi "
-"blocchi. Questi strumenti sono chiamati “pluggable transports”."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### TIPOLOGIE DI PLUGGABLE TRANSPORT"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Al momento ci sono tre tipi di pluggable transport disponibili, ma altri "
-"sono in fase di sviluppo."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4 fa apparire il traffico di Tor come casuale e impedisce inoltre ai "
-"censori di trovare i bridge tramite la scansione di Internet. I bridge obfs4"
-" hanno meno probabilità di essere bloccati rispetto ai suoi predecessori, i "
-"bridge obfs3."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"Tutti i meek transport fanno sembrare che stai navigando su un sito Web "
-"famoso invece di utilizzare Tor. meek-azure fa sembrare che tu stia "
-"utilizzando un sito Web Microsoft."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake è un miglioramento di Flashproxy. Invia il traffico attraverso "
-"WebRTC, un protocollo peer-to-peer con NAT integrata."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### USARE I PLUGGABLE TRANSPORTS"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-"Per utilizzare un pluggable transport, clicca 'Configura' quando avvii Tor "
-"Browser per la prima volta. Nella finestra che appare, dal menu a discesa, "
-"seleziona il pluggable transport che desideri utilizzare."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"Oppure, se Tor Browser è in esecuzione, fai clic su \"Preferenze\" nel menu "
-"hamburger e quindi su \"Tor\" nella barra laterale. Nella sezione "
-"\"Bridge\", seleziona la casella \"Usa un bridge\" e dal menu a discesa "
-"\"Seleziona un bridge incorporato\", scegli il pluggable transport che "
-"desideri utilizzare."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-"Dopo aver selezionato il pluggable transport, fai clic su \"Connetti\" per "
-"salvare le impostazioni."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### QUALE TRANSPORT DOVREI UTILIZZARE?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-"Ciascuno dei transport elencati nel menu di Tor Launcher funziona in modo "
-"diverso e la loro efficacia dipende dalle tue circostanze individuali."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-"Se stai cercando di aggirare una connessione bloccata per la prima volta, "
-"dovresti provare i diversi trasport: obfs4, snowflake e meek-azure."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-"Se provi tutte queste opzioni e nessuna di esse ti connette, dovrai inserire"
-" manualmente gli indirizzi bridge."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Leggi la sezione [Bridges](/en-US/bridges/) per imparare cosa sono i bridge "
-"e come ottenerli."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "BRIDGES"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"La maggior parte dei Pluggable Transports, come obfs4, si basano sull'uso di"
-" \"bridge\" relè (ponti). "
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"La maggior parte dei [Pluggable Transports](/it/circumvention), come obfs4, "
-"si basano sull'uso di \"bridge\" relè."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Come i normali Tor relè, i bridge sono gestiti da volontari; a differenza "
-"dei normali relè, tuttavia, non sono elencati pubblicamente, quindi un "
-"avversario non può identificarli facilmente."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"L'uso di bridge in combinazione con i pluggable transports aiuta a "
-"nascondere il fatto che stai utilizzando Tor, ma può rallentare la "
-"connessione rispetto all'utilizzo dei normali Tor relè."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Altri pluggable transport, come meek, usano differenti sistemi anti-censura "
-"che non fanno affidamento su ponti. Non avrete bisogno di utilizzare "
-"indirizzi di ponti per utilizzare questi pluggable transport."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### OTTENERE INDIRIZZI BRIDGE"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Poiché gli indirizzi bridge non sono pubblici, dovrai richiederli tu stesso."
-" Hai alcune opzioni:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-"* Visitare https://bridges.torproject.org/ e seguire le istruzioni, oppure"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Invia un'email a bridges(a)torproject.org da un indirizzo email Gmail o "
-"Riseup"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Usa MOAT per ottenere i bridge da Tor Browser."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### USARE MOAT"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Se stai avviando Tor Browser per la prima volta, fai clic su \"Configura\" "
-"per aprire la finestra Impostazioni di Rete Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-"Altrimenti, fai clic su \"Preferenze\" nel menù hamburger (menù principale) "
-"e poi su \"Tor\" nella barra laterale."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"Nella finestra Impostazioni Rete Tor, seleziona \"Tor è censurato nel mio "
-"Paese\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"Quindi, seleziona \"Richiedi un bridge da torproject.org\" e fai clic su "
-"\"Richiedi un bridge...\""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Completa il CAPTCHA e clicca \"Invia\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### INSERIRE INDIRIZZI BRIDGE"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-"Una volta che avrai ottenuto qualche indirizzo dei bridge, dovrai inserirli "
-"nel Launcher Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Se stai avviando Tor Browser per la prima volta, fai clic su \"Configura\" "
-"per aprire la finestra Impostazioni Rete Tor. Altrimenti, fai clic su "
-"\"Preferenze\" nel menù hamburger (menù principale) e quindi su \"Tor\" "
-"nella barra laterale per accedere a queste opzioni."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"Nella sezione \"Bridge\", seleziona la casella \"Usa un bridge\", quindi "
-"seleziona \"Fornisci un bridge che conosco\" e inserisci l'indirizzo di "
-"ciascun bridge su una riga separata."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Se la connessione non va a buon fine, il ponte che hai ricevuto potrebbe "
-"essere disattivato. Utilizza uno dei metodi qui sopra per ottenere più "
-"\"ponti\" e riprova."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "GESTIRE LE IDENTITÀ"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Scopri come controllare le informazioni di identificazione personale in Tor "
-"Browser"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Quando ti connetti a un sito web, non ci sono solo gli operatori di quel "
-"sito Web che possono registrare informazioni sulla tua visita. La maggior "
-"parte dei siti Web utilizza numerosi servizi di terze parti, tra cui "
-"pulsanti \"Mi piace\" dei social network, tracker di analisi e beacon "
-"pubblicitari, ognuno dei quali può collegare la tua attività sui diversi "
-"siti."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"L'uso della rete Tor impedisce agli osservatori di scoprire la posizione "
-"esatta e l'indirizzo IP, ma anche senza queste informazioni potrebbero "
-"essere in grado di collegare insieme le diverse aree della vostra attività. "
-"Per questo motivo il Browser Tor include alcune funzionalità aggiuntive che "
-"vi aiutano a controllare quali informazioni possono essere legate alla "
-"vostra identità."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### LA BARRA URL"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Il Browser Tor centra la vostra esperienza web sulla vostra relazione con il"
-" sito web nella barra degli indirizzi. Anche se vi connettete a due siti "
-"diversi che utilizzano lo stesso servizio di tracciamento di terze parti, il"
-" Browser Tor costringerà il contenuto a essere instradato su due diversi "
-"circuiti Tor, in modo che il tracciatore non sappia che entrambe le "
-"connessioni provengono dal vostro browser."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"D'altra parte, tutte le connessioni ad un singolo indirizzo del sito web "
-"saranno fatte sullo stesso circuito Tor, il che significa che potrete "
-"sfogliare diverse pagine di un singolo sito web in schede o finestre "
-"separate, senza alcuna perdita di funzionalità."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-"Puoi vedere un diagramma del circuito utilizzato dal browser Tor per la "
-"scheda attiva nel menu informazioni del sito, nella barra URL."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"Nel circuito, il Guard o nodo di entrata è il primo nodo scelto da Tor in "
-"modo automatico e casuale. Esso è differente dagli altri nodi nel circuito. "
-"Per evitare attacchi, il nodo Guard cambia dopo 2-3 mesi, non come gli altri"
-" nodi, che cambiano per ogni nuovo dominio. Per maggiori informazioni "
-"riguardanti Guards, consulta le pagine "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) e [Portale di "
-"Supporto](https://support.torproject.org/tbb/tbb-2/). "
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### FARE LOGIN ATTRAVERSO TOR"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Anche se il Browser Tor è progettato per consentire l'anonimato totale "
-"dell'utente sul Web, ci possono essere situazioni in cui ha senso utilizzare"
-" Tor con siti web che richiedono nomi utente, password o altre informazioni "
-"identificative."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Se si accede a un sito Web utilizzando un normale browser, si rivela anche "
-"l'indirizzo IP e la posizione geografica nel processo. Lo stesso è spesso "
-"vero quando si invia una e-mail. L'accesso al social network o agli account "
-"di posta elettronica tramite il Browser Tor consente di scegliere "
-"esattamente quali informazioni rivelare ai siti Web che si visitano. "
-"L'accesso utilizzando il Browser Tor è utile anche se il sito Web che stai "
-"cercando di raggiungere è censurato sulla tua rete."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Quando ti connetti in un sito attraverso Tor, ci sono diverse considerazioni"
-" che devi tenere a mente:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Vedi la pagina [Connessioni Sicure](/it/secure-connections) per importanti"
-" informazioni su come rendere sicura la tua connessione durante l'accesso."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Il browser Tor spesso fa sembrare che la vostra connessione provenga da "
-"una parte completamente diversa del mondo. Alcuni siti Web, come banche o "
-"provider di posta elettronica, potrebbero interpretare questo come un segno "
-"che il vostro account è stato violato e bloccarvi di conseguenza. L'unico "
-"modo per risolvere questo problema è seguire la procedura consigliata del "
-"sito per il recupero dell'account, oppure contattare gli operatori e "
-"spiegare la situazione."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### CAMBIARE IDENTITÀ E CIRCUITI"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"Tor Browser offre le funzioni \"Nuova Identità\" e \"Nuovo Circuito Tor per "
-"questo sito\". Puoi trovarle anche nel menu principale (menu hamburger)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### NUOVA IDENTITÀ"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Questa opzione è utile se si desidera impedire che la successiva attività "
-"del browser sia collegabile a ciò che si stava facendo in precedenza. "
-"Selezionandola si chiudono tutte le schede e le finestre aperte, si "
-"cancellano tutte le informazioni private come i cookie e la cronologia di "
-"navigazione e si utilizzano nuovi circuiti Tor per tutte le connessioni. Il "
-"Browser Tor vi avviserà che tutte le attività e i download verranno "
-"interrotti, tenete bene a mente queste informazioni prima di fare clic su "
-"\"Nuova Identità\"."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-"Per utilizzare questa funzione, è sufficiente fare clic su \"Nuova "
-"Identità\" nella barra degli strumenti di Tor Browser."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### NUOVO CIRCUITO TOR PER QUESTO SITO"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"Questa opzione è utile se il [relè di uscita](/it/about/#how-tor-works) in "
-"uso non è in grado di connettersi al sito Web richiesto o non lo sta "
-"caricando correttamente. Selezionandolo, la scheda o la finestra attualmente"
-" attiva verrà ricaricata su un nuovo circuito Tor. Anche le altre schede e "
-"finestre aperte dello stesso sito Web utilizzeranno il nuovo circuito una "
-"volta ricaricate. Questa opzione non cancella alcuna informazione privata o "
-"scollega la tua attività, né influisce sulle tue attuali connessioni ad "
-"altri siti Web."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-"Puoi accedere a questa opzione anche nel nuovo circuito nel menu "
-"informazioni del sito, nella barra URL."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "Servizi Onion "
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Servizi accessibili solo attraverso la rete Tor"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"I servizi Onion (conosciuti anche come \"Servizi nascosti\") sono servizi "
-"(come i siti web) a cui è possibile accedere solo attraverso la rete Tor."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"I servizi Onion offrono molteplici vantaggi rispetto ai servizi ordinari "
-"nella rete non privata:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* La localizzazione e l'indirizzo IP di un servizio Onion sono nascosti, "
-"questo ne rende difficile la censura e l'identificazione degli utilizzatori."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Tutto il traffico tra l'utente Tor e i servizi onion è crittografato "
-"punto-punto, così non devi preoccuparti della [connessione tramite "
-"HTTPS](/it/secure-connections). "
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* L' indirizzo di un servizio onion viene generato automaticamente, gli "
-"utenti quindi non hanno bisogno di comprare un dominio; il suffisso .onion "
-"aiuta Tor ad accertarsi che sia connesso all'indirizzo corretto e che la "
-"connessione non sia stata reindirizzata."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### COME ACCEDERE A UN SERVIZIO ONION"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Come qualsiasi altro sito, è necessario conoscere l'indirizzo di un servizio"
-" onion per connettersi ad esso. Un indirizzo onion è una stringa di 16 (e "
-"nel formato V3, 56) lettere e numeri per lo più casuali, seguita da "
-"\".onion\"."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"Quando si accede ad un sito che usa un servizio onion, Tor Browser mostrerà "
-"nella barra degli URL l'icona di una piccola cipolla verde che indica lo "
-"stato della tua connessione: sicuro e con un servizio onion. E se stai "
-"accedendo ad un sito con https e un servizio onion, mostrerà l'icona di una "
-"cipolla verde ed un lucchetto."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### RISOLUZIONE PROBLEMI"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"Se non riesci a raggiungere il servizio onion richiesto, assicurati di aver "
-"inserito correttamente l'indirizzo onion: anche un piccolo errore impedirà a"
-" Tor Browser di raggiungere il sito."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-"Se ancora non riuscite a connettervi al servizio onion, riprovate più tardi."
-" Potrebbero esserci dei problemi temporanei di connessione o i gestori del "
-"sito lo hanno messo offline senza nessun avviso."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-"Puoi anche accertarti di poter accedere ad altri servizi onion collegandoti "
-"al [Servizio Onion di DuckDuckGo](http://3g2upl4pq6kufc4m.onion/)."
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "CONNESSIONI SICURE"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr "Impara come proteggere i tuoi dati utilizzando il browser Tor e HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Se le informazioni personali, quali login e/o password, viaggiano in chiaro "
-"sulla rete potrebbero essere facilmente trovate da un intercettatore. Se "
-"stai accedendo a qualsiasi sito web sii sicuro che il sito offra una "
-"cifratura HTTPS che protegge i dati dalle intercettazioni. Puoi verificare "
-"che la connessione è cifrata se l'indirizzo inizia per \"https://\" al posto"
-" di \"http://\"."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "IMPOSTAZIONI DI SICUREZZA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "Configurare il browser Tor per la sicurezza e la fruibilità"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Di base, Tor Browser protegge la tua sicurezza criptando i dati prodotti dal"
-" browser. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-"Puoi aumentare ulteriormente la tua protezione scegliendo di disabilitare "
-"alcune funzionalità web che possono essere utilizzate per intaccare la tua "
-"sicurezza e anonimato."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-"Puoi farlo incrementando i livelli di sicurezza del browser Tor tramite il "
-"menu Impostazioni."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-"Incrementare la sicurezza di Tor Browser interromperà il corretto "
-"funzionamento di alcune pagine Web, pertanto è necessario valutare le "
-"esigenze di sicurezza rispetto al grado di fruibilità richiesto."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### ACCEDERE ALLE IMPOSTAZIONI DI SICUREZZA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"Le impostazioni di sicurezza sono accessibili cliccando l'icona Scudo "
-"accanto alla barra degli URL di Tor Browser."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Per vedere e sistemare le tue impostazioni di sicurezza, clicca il pulsante "
-"\"Impostazioni avanzate di sicurezza...\" nel menu Scudo."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### LIVELLI DI SICUREZZA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-"Incrementare il livello di sicurezza nelle impostazioni di Tor Browser "
-"disattiverà totalmente o parzialmente alcune funzionalità per proteggerti da"
-" possibili attacchi."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Puoi attivare queste impostazioni di nuovo in qualsiasi momento regolando il"
-" tuo livello di sicurezza."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Standard"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"* A questo livello, tutte le funzionalità del Browser Tor e dei siti son "
-"abilitate. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Sicuro"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-"*Questo livello disabilita alcune funzioni dei siti che possono essere "
-"pericolose per la privacy. Questo potrebbe causare la perdita di alcune "
-"funzioni nei siti."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* JavaScript è disattivato in tutti i siti non-[HTTPS](/secure-connections);"
-" alcuni caratteri e simboli matematici sono disabilitati; audio e video "
-"(HTML5) sono disponibili, basta cliccarli per avviarli. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### Sicurissimo"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-"* Questo livello permette solamente le funzionalità dei siti richieste per "
-"siti statici e servizi basilari. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr "Questi cambiamenti agiscono su immagini, video e script."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-"* Javascript è disabilitato di base in tutti i siti; alcune icone, simboli, "
-"animazioni e immagini sono disattivate; audio e video HTML5 sono disponibili"
-" cliccandoci sopra."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "AGGIORNAMENTO"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Come aggiornare Tor Browser"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-"Il browser Tor va mantenuto sempre aggiornato. Se continuate a usare una "
-"vecchia versione del browser potreste essere vulnerabili a gravi falle di "
-"sicurezza che comprometterebbero la vostra privacy e il vostro anonimato."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"Il browser Tor avviserà automaticamente la presenza di una nuova versione e "
-"sull'icona Torbutton apparirà un triangolo giallo ed eventualmente una "
-"schermata all'avvio del browser. Potrete decidere se aggiornare manualmente "
-"o automaticamente il browser."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### AGGIORNARE TOR BROWSER AUTOMATICAMENTE"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-"Quando ti viene richiesto di aggiornare Tor Browser, fai clic sul menù "
-"hamburger (menù principale), quindi seleziona \"Riavvia per aggiornare Tor "
-"Browser\"."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-"Attendi la fine del download e l'installazione dell'aggiornamento, quindi "
-"Tor Browser si riavvierà automaticamente. Ora sei aggiornato all'ultima "
-"versione."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### AGGIORNARE TOR BROWSER MANUALMENTE"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Quando vi verrà indicato di aggiornare il browser Tor, finite la sessione di"
-" navigazione e chiudete il programma."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-"Rimuovi Tor Browser dal tuo sistema eliminando la cartella che lo contiene "
-"(vedi la sezione [Disinstallazione](/it/uninstalling) per maggiori "
-"informazioni)."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"Visitate https://www.torproject.org/it/download/ e scaricate una copia "
-"dell'ultima versione del browser Tor, quindi installatela come prima."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "RISOLUZIONE DEI PROBLEMI"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Cosa fare quando il browser Tor non funziona"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Dovreste essere in grado di iniziare a navigare sul Web utilizzando il "
-"browser Tor poco dopo aver eseguito il programma e facendo clic sul pulsante"
-" \"Connetti\" se lo state utilizzando per la prima volta."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### CORREZIONI VELOCI"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Se il browser Tor non riuscisse a connettersi, potrebbe esserci una "
-"soluzione semplice. Prova una delle seguenti:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-"* L'orologio del vostro computer deve essere configurato correttamente o Tor"
-" non sarà in grado di connettersi."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Controlla che un altro browser Tor non sia già in esecuzione nel sistema. "
-"Se non sei sicuro che sia già in funzione, riavvia il computer."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-"* Controllate che l'antivirus installato sul vostro sistema non stia "
-"bloccando la rete Tor. Se non sapete questa informazione consultate il "
-"manuale dell'antivirus."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Disabilita temporaneamente il tuo firewall."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Elimina Tor Browser e installalo di nuovo. In caso di aggiornamento, non "
-"limitarti a sovrascrivere i tuoi precedenti file del Browser Tor; assicurati"
-" che siano stati già cancellati prima di procedere."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### LA TUA CONNESSIONE È CENSURATA?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"Se non riesci ancora a connetterti, il tuo fornitore di servizi internet "
-"potrebbe aver bloccato le connessioni alla rete Tor. Leggi la sezione "
-"[Elusione](/it/circumvention) per le possibili soluzioni."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### PROBLEMI NOTI"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"Tor Browser è in continuo sviluppo, alcuni problemi sono conosciuti ma non "
-"ancora risolti. Per favore controlla la pagina [Problemi conosciuti](/it"
-"/known-issues) per vedere se il problema che riscontri è già elencato."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "PLUGIN, ADD-ON E JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr "Come il browser Tor gestisce add-ons, plugins e JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### FLASH PLAYER"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"I siti Web di video, come Vimeo, utilizzano il plug-in di Flash Player per "
-"visualizzare i contenuti video. Sfortunatamente, questo software funziona "
-"indipendentemente dal Browser Tor e potrebbe non rispettare la "
-"configurazione del proxy del Browser. Per questo motivo può rivelare la "
-"vostra posizione reale e l'indirizzo IP agli operatori del sito web o ad un "
-"osservatore esterno. Per ovviare a ciò, Flash è disabilitato di default nel "
-"Browser Tor e l'attivazione non è consigliata."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"Alcuni siti web (ad esempio Youtube) offrono alternative per la "
-"visualizzazione dei video che non utilizzano Flash. Questi metodi potrebbero"
-" essere compatibili con il browser Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript è un linguaggio di programmazione utilizzato dai siti Web per "
-"offrire elementi interattivi quali video, animazioni, audio e timeline. "
-"Sfortunatamente, JavaScript può anche attivare attacchi alla sicurezza del "
-"browser, che potrebbero portare alla perdita dell'anonimato."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"Tor Browser include un componente aggiuntivo chiamato NoScript. È "
-"accessibile tramite \"Preferenze\" nel menù hamburger (menù principale), "
-"quindi seleziona \"Personalizza\" e trascina l'icona \"S\" nella parte "
-"superiore destra della finestra. NoScript ti consente di controllare il "
-"JavaScript (e altri script) che viene eseguito sulle singole pagine Web o di"
-" bloccarlo completamente."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"Gli utenti che richiedono un alto livello di sicurezza durante la "
-"navigazione dovrebbero impostare il [Livello di sicurezza](../security-"
-"settings/) di Tor Browser a “Sicuro” (che disattiva JavaScript per i siti "
-"non-HTTPS) o \"Molto sicuro\" (che lo fa per tutti i siti). Tuttavia, "
-"disattivando JavaScript alcuni siti potrebbero avere problemi di "
-"visualizzazione, per cui le impostazioni predefinite di Tor Browser "
-"permettono a tutti i siti di eseguire script in modalità \"Standard\"."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### COMPONENTI AGGIUNTIVI DEL BROWSER"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"Il browser Tor è basato su Firefox, questo permette di utilizzare add-ons e "
-"temi compatibili con Firefox anche nel browser Tor."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"Tuttavia, gli unici componenti aggiuntivi che sono stati testati per "
-"l'utilizzo con il browser Tor sono quelli inclusi di default. "
-"L'installazione di qualsiasi altro componente aggiuntivo del browser Tor "
-"potrebbe interrompere la funzionalità dello stesso o causare problemi più "
-"seri che influiscono sulla privacy e sulla sicurezza. È fortemente "
-"sconsigliato installare ulteriori componenti aggiuntivi; Tor Project non "
-"offrirà supporto per queste configurazioni."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "DISINSTALLAZIONE"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Come rimuovere il browser Tor dal sistema"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Disinstallare il browser Tor dal sistema è semplice:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "Su Windows:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-"* Individua la tua cartella o applicazione di Tor Browser. La posizione "
-"predefinita è sul Desktop."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* Elimina la cartella o l'applicazione Tor Browser."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Svuota il cestino."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "Su macOS:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-"* Individua l'applicazione di Tor Browser. La posizione predefinita è la "
-"cartella Applicazioni."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Sposta l'applicazione Tor Browser nel cestino."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* Vai nella cartella `~/Library/Application Support/` ."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-"* Ricorda che la cartella Library è nascosta nelle versioni recenti di "
-"macOS. Per navigare in questa cartella con Finder, seleziona \"Vai alla "
-"cartella...\" nel menu \"Vai\"."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-"* Poi digita \"~/Library/Application Support/\" nella finestra e clicca "
-"Vai."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr "* Individua la cartella TorBrowser-Data e spostala nel cestino."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"Ricorda che se non hai installato Tor Browser nel percorso predefinito (la "
-"cartella Applicazioni), allora la cartella TorBrowser-Data non sarà nella "
-"cartella `~/Library/Application Support/`, ma nella stessa cartella in cui "
-"hai installato Tor Browser."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "Su Linux:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* Individua la cartella Tor Browser. Su Linux non c'è una posizione "
-"predefinita, tuttavia la cartella si chiamerà \"tor-browser_en-US\" se usi "
-"la versione inglese di Tor Browser."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Elimina la cartella Tor Browser."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-"* Ricorda che la funzione standard di \"Disinstallazione\" del tuo sistema "
-"operativo non viene utilizzata."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "PROBLEMI CONOSCIUTI"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Per funzionare correttamente Tor ha bisogno che l'ora (ed il fuso orario) "
-"del sistema su cui viene eseguito siano corretti."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* I seguenti programmi firewall possono interferire con Tor, per questo "
-"motivo potrebbe essere necessario disabilitarli temporaneamente:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus per Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Filmati che richiedono Adobe Flash non sono disponibili, Flash è "
-"disabilitato per motivi di sicurezza."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr "* tor non può cambiare un ponte se un proxy è configurato."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* Il pacchetto del browser Tor è datato 1 gennaio 2000 00:00:00 UTC. Questo "
-"per garantire che ogni build del software sia esattamente riproducibile."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* Per eseguire il Browser Tor su Ubuntu l'utente deve eseguire uno script "
-"mediante shell. Aprite \"files\" (il file manager di Unity), aprite "
-"Preferenze → Scheda Comportamento → Imposta \"Esegui file di testo "
-"eseguibili quando sono aperti\" su \"Chiedi ogni volta\", quindi fai clic su"
-" OK."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-"* il browser Tor può essere lanciato anche dalla riga di comando eseguendo "
-"il seguente comando all'interno della cartella del Browser Tor:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* BitTorrent nello specifico [non è reso anonimo tramite "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "RENDERE TOR BROWSER PORTATILE"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Come installare Tor Browser su un supporto rimovibile"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-"Se si preferisce, Tor Browser può essere reso portatile estraendolo dal suo "
-"archivio direttamente su un supporto rimovibile come una chiavetta USB o una"
-" scheda SD."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-"Si consiglia di utilizzare supporti con capacità di riscrittura in modo che "
-"Tor Browser possa essere aggiornato secondo necessità."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-"1. Collega il supporto rimovibile e formattalo. Va bene qualsiasi tipo di "
-"file system."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-"2. Vai alla [pagina di download](https://torproject.org/it/download) di Tor "
-"Browser."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-"3. Scarica il file Windows `.exe` e salvalo direttamente sul tuo supporto."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Raccomandato) Verifica la [firma dei "
-"file](https://support.torproject.org/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-"5. Al termine del download, clicca sul file `.exe` per iniziare il processo "
-"di installazione."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-"6. Quando il programma di installazione chiede dove installare Tor Browser, "
-"seleziona il supporto rimovibile."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-"1. Collega il supporto rimovibile e formattalo. *Devi* usare il formato "
-"esteso macOS (Journaled)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-"3. Scarica il file macOS `.dmg` e salvalo direttamente sul tuo supporto."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-"5. Al termine del download, clicca sul file `.dmg` per iniziare il processo "
-"di installazione."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-"3. Scarica il file Linux `.tar.xz` e salvalo direttamente sul tuo supporto."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr "5. Al termine del download, estrarre l'archivio sul supporto."
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "Chiudi banner"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "Tracciamento, sorveglianza e censura sono ampiamente diffuse in rete."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "RIPRENDI POSSESSO DI INTERNET CON TOR"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "DONA ORA"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Dai oggi, e Mozilla ricambierà la tua donazione."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Scarica Tor Browser"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"Scarica Tor Browser per provare la vera navigazione privata senza "
-"tracciamento, sorveglianza o censure."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "La nostra missione:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"Far progredire i diritti umani e la libertà creando e distribuendo software "
-"gratuito ed open source con tecnologie per rendersi anonimi e mantenere la "
-"privacy, favorendone l'ampia disponibilità ed utilizzo e promuovendone la "
-"comprensione scientifica e popolare."
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Dona"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Dona Adesso"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "Iscriviti alla nostra Newsletter"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr "Ricevi aggiornamenti mensili e altre occasioni dal Progetto Tor:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "Iscriviti"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"Marchio registrato, avvertenze sul copyright e regole per l'utilizzo da "
-"terzi possono essere trovati nel nostro %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Menu"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Cerca"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-"Questa visualizzazione mostra quali informazioni sono visibili agli "
-"intercettatori con e senza la cifratura del Browser Tor e HTTPS:"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-"Cliccate sul pulsante \"Tor\" per vedere quali dati sono visibili ad un "
-"osservatore quando state utilizzando la rete Tor. Il bottone diventerà verde"
-" quando Tor è attivato."
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"Cliccate sul pulsante \"HTTPS\" per vedere quali dati sono visibili ad un "
-"osservatore quando state usando il protocollo HTTPS. Il pulsante diventerà "
-"verde quando HTTPS è attivo."
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-"Quando entrambi i pulsanti sono verdi, vengono visualizzati i dati visibili "
-"agli osservatori quando si utilizzano entrambi gli strumenti."
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-"Quando entrambi i pulsanti sono grigi, vengono visualizzati i dati visibili "
-"agli osservatori quando non si utilizzano entrambi gli strumenti."
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "DATI POTENZIALMENTE VISIBILI"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Sito.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "Il sito viene visitato."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "utente / password"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Username a password utilizzate per l'autenticazione."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "dati"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "I dati vengono trasmessi."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "posizione"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-"Posizione di rete del computer utilizzato per visitare il sito Web "
-"(l'indirizzo IP pubblico)."
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Indipendentemente dal fatto che Tor venga utilizzato o meno."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr "Difenditi contro tracciamento e sorveglianza. Evita la censura."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor Project | Manuale del Browser Tor"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Argomenti"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Contribuenti di questa pagina:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Modifica questa pagina"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Esprimi un Feedback"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Link permanente"
diff --git a/contents+lt.po b/contents+lt.po
deleted file mode 100644
index 4aff7e0d44..0000000000
--- a/contents+lt.po
+++ /dev/null
@@ -1,2638 +0,0 @@
-# Translators:
-# erinm, 2019
-# Tautvydas Ž., 2019
-# Moo, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Moo, 2020\n"
-"Language-Team: Lithuanian (https://www.transifex.com/otf/teams/1519/lt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Tor Naršyklės naudotojo vadovas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Apie"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Žiniasklaida"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Tinklaraštis"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Naujienlaiškis"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Palaikymas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Bendruomenė"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Susisiekti"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "Darbo vietos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Apie Tor Naršyklę"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Atsisiuntimas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor Naršyklės paleidimas pirmą kartą"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Keičiamieji perdavimai"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Apėjimas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Tinklų tiltai"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Tapatybių tvarkymas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Onion paslaugos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Saugūs ryšiai"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Saugumo nustatymai"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Atnaujinimas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Papildiniai"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Nesklandumų šalinimas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Šalinimas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Žinomos problemos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Tapimas Tor vertėju"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor Naršyklės pavertimas perkeliama"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Įdiegimas"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "APIE TOR NARŠYKLĘ"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Sužinokite ką Tor Naršyklė gali padaryti, kad apsaugotų jūsų privatumą ir "
-"anonimiškumą"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-"Tam, kad apsaugotų jūsų privatumą ir anonimiškumą, Tor Naršyklė naudoja Tor "
-"tinklą. Tor tinklo naudojimas turi dvi pagrindines savybes:"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* Jūsų interneto paslaugų teikėjas ir bet kas, stebintis jūsų ryšį "
-"vietiniame lygmenyje, negalės sekti jūsų veiklos internete, įskaitant jūsų "
-"lankomų internetinių svetainių pavadinimų ir adresų."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* Svetainių operatoriai bei paslaugos, kuriomis naudojatės, ir visi kiti, "
-"kas jas stebi, vietoj jūsų tikrojo internetinio (IP) adreso, matys ryšį "
-"ateinantį iš Tor tinklo, ir jie nežinos kas jūs esate, nebent patys aiškiai "
-"leisite jiems save atpažinti."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-"Be to, Tor Naršyklė yra sukurta taip, kad neleistų svetainėms imti jūsų "
-"\"pirštų atspaudų\" ar atpažinti jus pagal jūsų naršyklės konfigūraciją."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"Pagal numatymą, Tor Naršyklė nesaugo jokio naršymo žurnalo. Slapukai galioja"
-" tik vienam seansui (tol, kol nebus išeita iš Tor Naršyklės arba nebus "
-"užklausta [Nauja tapatybė](/lt/managing-identities/#new-identity))."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### KAIP VEIKIA TOR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor yra virtualių tunelių tinklas, leidžiantis jums pagerinti savo privatumą"
-" ir saugumą internete. Tor veikia, siųsdamas jūsų duomenų srautą per tris "
-"atsitiktinius serverius (kurie dar žinomi kaip *retransliavimai*) Tor "
-"tinkle. Po viso to, paskutinis grandinėje esantis retransliavimas (\"išėjimo"
-" retransliavimas\") siunčia duomenų srautą į viešąjį internetą."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"Kaip veikia"
-" Tor Naršyklė\"/>"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"Aukščiau esantis paveikslas atvaizduoja naudotoją, naršantį per Tor po "
-"įvairias internetines svetaines. Žalieji kompiuteriai viduryje atvaizduoja "
-"retransliavimus Tor tinkle, tuo tarpu trys raktai atvaizduoja šifravimo "
-"sluoksnius tarp naudotojo ir kiekvieno retransliavimo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "ATSISIUNTIMAS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Kaip atsisiųsti Tor Naršyklę"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"Saugiausias ir paprasčiausias būdas atsisiųsti Tor Naršyklę - iš oficialios "
-"Tor Project internetinės svetainės, adresu "
-"https://www.torproject.org/download."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"Jūsų ryšys su svetaine bus apsaugotas naudojant [HTTPS](/lt/secure-"
-"connections) protokolą, kuris apsunkins kitiems asmenims galimybę klastoti "
-"duomenis."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Vis dėlto, kartais, galite neturėti prieigos prie Tor Project internetinės "
-"svetainės, pavyzdžiui, ši svetainė jūsų tinkle gali būti užblokuota."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Jeigu taip nutiktų, galite naudotis vienu iš alternatyviųjų žemiau išvardytų"
-" atsisiuntimo metodų."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### TINKLAVIETĖS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Jeigu negalite atsisiųsti Tor Naršyklės iš oficialios Tor Project "
-"internetinės svetainės, tuomet vietoj jos, galite pabandyti atsisiųsti "
-"naršyklę iš vienos iš mūsų oficialių tinklaviečių arba per "
-"[EFF](https://tor.eff.org), arba [Calyx "
-"Institute](https://tor.calyxinstitute.org), arba [CCC](https://tor.ccc.de)."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor - tai paslauga, kuri automatiškai atsako į el. laiškus ir atsiunčia "
-"nuorodas į naujausią Tor Naršyklės versiją, kuri saugoma įvairiose vietose, "
-"tokiose kaip Dropbox, Google diskas ir GitHub."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### NORĖDAMI NAUDOTIS GETTOR EL. PAŠTU:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"Išsiųskite el. laišką į gettor(a)torproject.org, laiške parašydami "
-"\"windows\", \"osx\" ar \"linux\" (be kabučių), priklausomai nuo to, kokią "
-"operacinę sistemą naudojate."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor atsakys el. laišku, kuriame bus nuorodos, iš kurių galėsite "
-"atsisiųsti Tor Naršyklės paketą, kriptografinį parašą (reikalingą "
-"atsisiuntimo patikrinimui), parašui naudojamo rakto kontrolinį kodą bei "
-"paketo kontrolinę sumą. Jums gali būti siūloma pasirinkti \"32-bitų\" arba "
-"\"64-bitų\" programinę įrangą: tai priklauso nuo jūsų naudojamo kompiuterio "
-"modelio."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### NORĖDAMI NAUDOTIS GETTOR PER JABBER/XMPP (JITSI, COYIM IR T.T.):"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Norėdami gauti nuorodas, skirtas atsisiųsti Tor Naršyklę kinų kalba Linux "
-"operacinei sistemai, siųskite el. laišką į gettor(a)torproject.org su žodžiais"
-" \"linux zh\"."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "ĮDIEGIMAS"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Tor Naršyklės įdiegimas"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Windows sistemos:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Pereikite į Tor Naršyklės [atsisiuntimo "
-"puslapį](https://www.torproject.org/download). "
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Atsisiųskite Windows `.exe` failą."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Rekomenduojama) Patikrinti [failo "
-"parašą](https://support.torproject.org/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Pasibaigus atsisiuntimui, spustelėkite du kartus ant `.exe` failo. "
-"Užbaikite įdiegimo vediklio procesą."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "macOS sistemos:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. Atsisiųskite macOS `.dmg` failą"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Pasibaigus atsisiuntimui, spustelėkite du kartus ant `.dmg` failo. "
-"Užbaikite įdiegimo vediklio procesą."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "GNU/Linux sistemos:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. Atsisiųskite GNU/Linux `.tar.xz` failą"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. Pasibaigus atsisiuntimui, išskleiskite archyvą naudodami komandą `tar -xf"
-" [TN archyvas]` arba naudodami archyvų tvarkytuvę."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. Turėsite nurodyti savo GNU/Linux sistemai, kad norite galimybės grafinėje"
-" sąsajoje vykdyti apvalkalo scenarijus."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Pereikite į naujai išskleistą Tor Naršyklės katalogą."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"Spustelėkite dešiniuoju pelės mygtuku ant `start-tor-browser.desktop`, "
-"atverkite Savybes ar Nuostatas ir pakeiskite leidimą, skirtą vykdyti failą "
-"kaip programą."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-"Spustelėkite du kartus ant piktogramos, kad pirmą kartą paleistumėte Tor "
-"Naršyklę."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Priešingu atveju, tiesiai iš Tor Naršyklės katalogo, naudodami komandų "
-"eilutę, galite paleisti šią komandą:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "TOR NARŠYKLĖS PALEIDIMAS PIRMĄ KARTĄ"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Išmokite kaip naudotis Tor Naršykle pirmą kartą"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Paleidę Tor Naršyklę pirmą kartą, pamatysite Tor tinklo nustatymų langą."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Jame bus siūloma tiesiogiai jungtis prie Tor tinklo arba sukonfigūruoti Tor "
-"Naršyklę savo ryšiui."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### PRISIJUNGTI"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"Daugeliu atvejų, pasirinkus \"Prisijungti\", jums bus leista prisijungti "
-"prie Tor tinklo be jokios tolimesnės konfigūracijos."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Spustelėjus vieną kartą, atsiras būsenos juosta, rodanti Tor ryšio eigą."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Jeigu jūsų ryšys yra santykinai greitas, bet jums atrodo, kad ši juosta tam "
-"tikroje vietoje užstrigo, tuomet pažiūrėkite [Nesklandumų "
-"šalinimo](/lt/troubleshooting) puslapyje kaip galėtumėte išspręsti šią "
-"problemą."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### KONFIGŪRUOTI"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-"Šį variantą turėtumėte pasirinkti, jeigu žinote, kad jūsų ryšys yra "
-"cenzūruojamas arba naudoja įgaliotąjį serverį. Tor Naršyklė praves jus per "
-"eilę konfigūravimo parinkčių."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Pirmame lange bus klausiama ar jūsų ryšyje prieiga prie Tor yra blokuojama "
-"ar cenzūruojama, ar ne. Jeigu manote, kad tai nėra jūsų atvejis, pasirinkite"
-" \"Ne\". Jeigu žinote, kad jūsų ryšys yra cenzūruojamas arba bandėte, bet "
-"jums nepavyko prisijungti prie Tor tinklo ir jokie sprendimai daugiau "
-"nebepadeda, tuomet pasirinkite \"Taip\". Tuomet būsite nukreipti į "
-"[Apėjimo](/lt/circumvention) puslapį, skirtą konfigūruoti keičiamąjį "
-"perdavimą."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"Kitame lange, bus klausiama ar jūsų ryšys naudoja įgaliotąjį serverį. "
-"Daugeliu atvejų tai nėra būtina. Dažniausiai, žinosite, ar jums reikia "
-"atsakyti \"Taip\", nes tie patys nustatymai bus naudojami kitose naršyklėse "
-"jūsų sistemoje. Jei įmanoma, paprašykite tinklo administratoriaus pagalbos. "
-"Jeigu jūsų ryšys nenaudoja įgaliotojo serverio, spustelėkite \"Tęsti\"."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "APĖJIMAS"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Ką daryti, jei Tor tinklas yra užblokuotas"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"Kartais, tiesioginę prieigą prie Tor tinklo gali blokuoti jūsų interneto "
-"paslaugų teikėjas arba vyriausybė."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"Tor Naršyklėje yra keli apėjimo įrankiai, skirti apeiti šiuos blokavimus. "
-"Šie įrankiai yra vadinami \"keičiamaisiais perdavimais\"."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### KEIČIAMŲJŲ PERDAVIMŲ TIPAI"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Šiuo metu yra prieinami trys keičiamieji perdavimai, tačiau yra kuriama "
-"daugiau."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4 padaro taip, kad Tor duomenų srautas atrodo kaip atsitiktinis, ir "
-"tokiu būdu neleidžia cenzoriams rasti tinklų tiltus peržiūrint internetą. "
-"obfs4 tinklų tiltai turi mažesnę tikimybę būti užblokuoti, nei jų pirmtakai "
-"obfs3 tinklų tiltai."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"meek perdavimai padaro taip, jog atrodo, kad naršote po didžiulę internetinę"
-" svetainę, o ne naudojatės Tor. meek-azure padaro taip, jog atrodo, kad "
-"naudojatės Microsoft internetine svetaine."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake yra Flashproxy patobulinimas. Jis siunčia jūsų duomenų srautą per "
-"WebRTC, lygiarangių protokolą su įtaisytuoju NAT perforavimu."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### KEIČIAMŲJŲ PERDAVIMŲ NAUDOJIMAS"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-"Norėdami naudoti keičiamąjį perdavimą, pirmojo Tor Naršyklės paleidimo metu "
-"spustelėkite \"Konfigūruoti\". Atsivėrusiame lange, iš išskleidžiamojo meniu"
-" pasirinkite kurį keičiamąjį perdavimą norėtumėte naudoti."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"Arba, jeigu Tor Naršyklė jau paleista, mėsainio (≡) meniu spustelėkite ant "
-"\"Nuostatų\", o tuomet šoninėje juostoje ant \"Tor\". \"Tinklų tiltų\" "
-"sekcijoje pažymėkite langelį \"Naudoti tinklų tiltą\", o išskleidžiamajame "
-"meniu \"Pasirinkite įtaisytąjį tinklų tiltą\", pasirinkite bet kurį norimą "
-"naudoti keičiamąjį perdavimą."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-"Pasirinkę norimą naudoti keičiamąjį perdavimą, spustelėkite \"Prisijungti\","
-" kad įrašytumėte nustatymus."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### KURĮ PERDAVIMĄ TURĖČIAU NAUDOTI?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-"Visi Tor paleidyklės meniu išvardyti perdavimai veikia skirtingu būdu, o jų "
-"efektyvumas priklauso nuo jūsų individualių aplinkybių."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-"Jeigu pirmą kartą bandote apeiti blokuojamą ryšį, išbandykite skirtingus "
-"perdavimus: obfs4, snowflake ir meek-azure."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-"Jei išbandėte visus šiuos variantus, bet vis tiek negalite prisijungti prie "
-"interneto, tuomet turėsite rankiniu būdu įvesti tinklų tiltų adresus."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Norėdami sužinoti kas yra tinklų tiltai ir kaip juos gauti, skaitykite "
-"skyrių [Tinklų tiltai](/lt/bridges/)."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "TINKLŲ TILTAI"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"Dauguma keičiamųjų perdavimų, kaip, pavyzdžiui, obfs4, veikia remdamiesi "
-"\"tinklų tilto\" retransliavimo naudojimu."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"Dauguma [keičiamųjų perdavimų](/lt/circumvention), kaip, pavyzdžiui, obfs4, "
-"veikia remdamiesi \"tinklų tilto\" retransliavimo naudojimu."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Kaip ir įprasti Tor retransliavimai, tinklų tiltai veikia savanorių dėka. "
-"Vis dėlto, kitaip nei įprasti retransliavimai, tinklų tiltai nėra išvardyti "
-"viešai, todėl priešininkas nėgali jų lengvai atpažinti."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"Tinklų tiltų kartu su keičiamaisiais perdavimais naudojimas padeda nuslėpti "
-"tai, jog naudojatės Tor. Tačiau toks naudojimas gali labiau sulėtinti ryšį, "
-"nei naudojantis įprastais Tor retransliavimais."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Kiti keičiamieji perdavimai, tokie kaip meek, naudoja kitokias anticenzūros "
-"technikas, kurios nesiremia tinklų tiltais. Norint naudotis šiais "
-"perdavimais, jums nereikia gauti tinklų tiltų adresų."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### TINKLŲ TILTŲ ADRESŲ GAVIMAS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Kadangi tinklų tiltų adresai nėra vieši, turėsite užklausti jų patys. Turite"
-" keletą pasirinkimų:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-"* Apsilankyti https://bridges.torproject.org/ ir sekti nurodymus, arba"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Parašyti el. laišką, adresu bridges(a)torproject.org iš Gmail arba Riseup "
-"el. pašto adreso"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Naudoti MOAT, kad gautumėte tinklų tiltus tiesiai iš Tor Naršyklės."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### MOAT NAUDOJIMAS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Jei Tor Naršyklę paleidžiate pirmą kartą, spustelėkite \"Konfigūruoti\", kad"
-" atvertumėte Tor tinklo nustatymų langą."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-"Priešingu atveju, mėsainio (≡) meniu (pagrindiniame meniu) spustelėkite ant "
-"\"Nuostatų\", o tuomet šoninėje juostoje ant \"Tor\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"Tor tinklo nustatymų lange pasirinkite \"Mano šalyje Tor yra "
-"cenzūruojamas\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"Tuomet pasirinkite \"Prašyti tinklų tilto iš torproject.org\" ir spuselėkite"
-" \"Užklausti tinklų tiltą…\""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Surinkite saugos kodą ir spustelėkite \"Pateikti\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### TINKLŲ TILTŲ ADRESŲ ĮVEDIMAS"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr "Gavę tinklų tiltų adresų, turėsite juos įvesti į Tor paleidyklę."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Jeigu paleidžiate Tor naršyklę pirmą kartą, spustelėkite \"Konfigūruoti\", "
-"kad atvertumėte Tor tinklo nustatymų langą. Priešingu atveju, mėsainio (≡) "
-"meniu (pagrindiniame meniu) spustelėkite ant \"Nuostatų\", o tuomet šoninėje"
-" juostoje ant \"Tor\", kad pasiektumėte šiuos parametrus."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"\"Tinklų tiltų\" sekcijoje pažymėkite langelį \"Naudoti tinklų tiltą\", "
-"tuomet, pasirinkite \"Pateikti man žinomą tinklų tiltą\" ir atskirose "
-"eilutėse įveskite kiekvieno tinklų tilto adresą."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Jei ryšys patiria nesėkmę, gali būti, kad jūsų gauti tinklų tiltai "
-"nebeveikia. Norėdami gauti daugiau tinklų tiltų adresų, naudokite vieną iš "
-"aukščiau aprašytų metodų ir bandykite dar kartą."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "TAPATYBIŲ TVARKYMAS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Sužinokite, kaip Tor Naršyklėje valdyti asmenį identifikuojančią informaciją"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Kai prisijungiate prie internetinės svetainės, informaciją apie jūsų "
-"apsilankymą toje svetainėje gali rinkti ne tik tos svetainės operatoriai. "
-"Dabar, daugelis internetinių svetainių naudoja daugybę trečiųjų šalių "
-"paslaugų, įskaitant socialinių tinklų mygtukus „Patinka“, analizės sekiklius"
-" bei reklamos švyturėlius. Visa tai gali susieti jūsų veiklą įvairiose "
-"svetainėse."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"Naudojimasis Tor tinklu neleidžia stebėtojams atrasti jūsų tikslią buvimo "
-"vietą ir IP adresą, tačiau net ir neturėdami šios informacijos jie gali "
-"susieti skirtingas jūsų veiklos sritis kartu. Dėl šios priežasties, Tor "
-"naršyklėje yra kelios papildomos ypatybės, padedančios jums valdyti, kokia "
-"informacija gali būti susieta su jūsų tapatybe."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### URL ADRESŲ JUOSTA"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Tor Naršyklė sutelkia jūsų internetinį patyrimą į jūsų santykį su "
-"internetine svetaine URL adresų juostoje. Net jeigu prisijungsite prie "
-"dviejų skirtingų internetinių svetainių, naudojančių tą pačią trečiosios "
-"šalies sekimo paslaugą, Tor naršyklė privers pateikti turinį per dvi "
-"skirtingas Tor grandines, taigi, sekiklis nežinos, kad abu ryšiai yra "
-"užmegzti iš jūsų naršyklės."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"Kita vertus, visi ryšiai su vienu internetinės svetainės adresu bus užmegzti"
-" per tą pačią Tor grandinę, o tai reiškia, kad galite naršyti skirtingus tos"
-" pačios internetinės svetainės puslapius atskirose kortelėse ar languose, "
-"neprarasdami jokio funkcionalumo."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-"URL adresų juostoje, internetinės svetainės informacijos meniu galite matyti"
-" Tor Naršyklės esamoje kortelėje naudojamos grandinės schemą."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"Grandinėje \"Sargybinis\" arba įėjimo mazgas yra pirmasis mazgas, kurį "
-"automatiškai ir atsitiktinai pasirenka \"Tor\". Tačiau jis skiriasi nuo kitų"
-" grandinės mazgų. Siekiant išvengti profiliavimo atakų, Sargybinis mazgas "
-"keičiasi tik po 2-3 mėnesių, skirtingai nuo kitų mazgų, kurie keičiasi su "
-"kiekviena nauja sritimi. Norėdami gauti daugiau informacijos apie "
-"Sargybinius, apsilankykite "
-"[DUK](https://www.torproject.org/docs/faq#EntryGuards) ir [Palaikymo "
-"portale](https://support.torproject.org/tbb/tbb-2/)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### PRISIJUNGIMAS PER TOR"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Nors Tor Naršyklė yra sukurta taip, kad įgalintų bendrą naudotojo "
-"anonimiškumą saityne, gali būti situacijų, kai yra prasminga naudoti Tor su "
-"internetinėmis svetainėmis, kurios reikalauja naudotojo vardų, slaptažodžių "
-"ar kitos identifikuojančios informacijos."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Jei prisijungiate prie internetinės svetainės naudodami įprastą naršyklę, "
-"šiame procese taip pat atskleidžiate ir savo IP adresą bei geografinę buvimo"
-" vietą. Tas pats dažnai būna ir siunčiant el. laišką. Prisijungimas prie "
-"savo socialinių tinklų ar el. pašto paskyrų, naudojantis Tor Naršykle, "
-"leidžia pasirinkti, kurią tiksliai informaciją atskleidžiate naršomoms "
-"internetinėms svetainėms. Prisijungimas naudojant Tor Naršyklę taip pat būna"
-" naudingas, jei internetinė svetainė, kurioje bandote apsilankyti, yra "
-"cenzūruojama jūsų tinkle."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Yra keli dalykai, kuriuos privalote turėti omenyje, kai prisijungiate prie "
-"internetinės svetainės naudodamiesi Tor:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Žiūrėkite [saugių ryšių](/lt/secure-connections) puslapį, kad sužinotumėte"
-" svarbią informaciją apie tai, kaip apsaugoti savo ryšį prisijungimų metu."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Tor Naršyklė dažnai padaro taip, jog atrodo, kad jūsų ryšys yra "
-"užmezgiamas iš visai kitos pasaulio vietos. Kai kurios internetinės "
-"svetainės, tokios kaip bankų ar el. pašto paslaugų teikėjų, gali tai "
-"traktuoti kaip požymį, kad į jūsų paskyrą buvo įsilaužta ar, kad ji yra "
-"pavojuje, ir todėl gali jus užblokuoti. Vienintelis būdas kaip tai galima "
-"išspręsti - tai atlikti internetinės svetainės rekomenduojamą paskyros "
-"atkūrimo procedūrą arba susisiekti su operatoriais ir paaiškinti situaciją."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### TAPATYBIŲ IR GRANDINIŲ KEITIMAS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"Tor Naršyklėje yra ypatybės \"Nauja tapatybė\" ir \"Nauja Tor grandinė šiai "
-"svetainei\". Jas taip pat galima rasti pagrindiniame meniu (mėsainio (≡) "
-"meniu)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### NAUJA TAPATYBĖ"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Šis parametras yra naudingas, jei norite, kad jūsų tolesnė veikla naršyklėje"
-" nebūtų susiejama su tuo, ką darėte anksčiau. Pasirinkus šį parametrą, bus "
-"užvertos visos jūsų atvertos kortelės ir langai, bus išvalyta visa asmeninė "
-"informacija, tokia kaip slapukai ir naršymo žurnalas, ir visiems ryšiams bus"
-" naudojama nauja Tor grandinė. Tor Naršyklė jus įspės, kad visa veikla ir "
-"atsisiuntimai bus sustabdyti, todėl prieš spustelėdami „Nauja tapatybė“, "
-"turėkite visa tai omenyje."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-"Norint naudoti šį parametrą, reikia, tiesiog, Tor Naršyklės įrankių juostoje"
-" spustelėti ant „Nauja tapatybė“."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### NAUJA TOR GRANDINĖ ŠIAI SVEITAINEI"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"Šis parametras naudingas tuo atveju, jei jūsų naudojamas [išėjimo "
-"retransliavimas](/lt/about/#how-tor-works) negali prisijungti prie jūsų "
-"reikalaujamos internetinės svetainės arba, jei netinkamai ją įkelia. "
-"Pasirinkus šį parametrą, esamu metu aktyvi kortelė ar langas bus įkeltas iš "
-"naujo per naują Tor grandinę. Kitos atviros tos pačios internetinės "
-"svetainės kortelės ir langai taip pat naudos naują grandinę, kai tik jie bus"
-" įkelti iš naujo. Šis parametras neišvalo jokios privačios informacijos ir "
-"neatsieja jūsų veiklos, be to, jis niekaip nepaveikia jūsų esamų ryšių su "
-"kitomis internetinėmis svetainėmis."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-"Šį parametrą taip pat galite rasti URL adresų juostoje, internetinės "
-"svetainės informacijos meniu, naujos grandinės rodinyje."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "ONION PASLAUGOS"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Paslaugos, kurios yra prieinamos tik besinaudojant Tor"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Onion paslaugos (anksčiau žinomos kaip „paslėptos paslaugos“) yra paslaugos "
-"(pvz., internetinės svetainės), kurios yra pasiekiamos tik per Tor tinklą."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"Onion paslaugos, lyginant jas su įprastomis paslaugomis ne privačiame "
-"internete, siūlo keletą privalumų:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* Onion paslaugų buvimo vieta ir IP adresas yra paslėpti, todėl "
-"priešininkams sunku jas cenzūruoti ar identifikuoti jų operatorius."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Visas duomenų srautas tarp Tor naudotojų ir onion paslaugų yra ištisai "
-"užšifruotas, todėl jums nereikia jaudintis dėl [prisijungimo per HTTPS](/lt"
-"/secure-connections)."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* Onion paslaugos adresas yra generuojamas automatiškai, todėl operatoriams "
-"nereikia pirkti srities vardo; .onion URL adresas taip pat padeda Tor "
-"užtikrinti, kad jis jungiasi prie reikiamos vietos ir, kad ryšys nėra "
-"suklastotas."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### KAIP PASIEKTI ONION PASLAUGĄ"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Kaip ir su bet kuria kita internetine svetaine, norėdami prisijungti prie "
-"onion paslaugos, turėsite žinoti jos adresą. Onion adresas yra eilutė, "
-"sudaryta iš 16 (o V3 formatu iš 56) didžiąja dalimi atsitiktinių raidžių ir "
-"skaičių, po kurių seka „.onion“."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"Kai lankysitės internetinėje svetainėje, kuri naudoja onion paslaugą, Tor "
-"Naršyklė URL adresų juostoje rodys mažo žalio svogūno piktogramą, "
-"atvaizduojančią jūsų ryšio būseną: saugią ir naudojančią onion paslaugą. O "
-"jei lankysitės internetinėje svetainėje, kuri naudoja https ir onion "
-"paslaugą, tuomet URL adresų juostoje bus rodoma žalio svogūno ir "
-"pakabinamosios spynos piktograma."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### NESKLANDUMŲ ŠALINIMAS"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"Jei negalite pasiekti jums reikalingos onion paslaugos, įsitikinkite, kad "
-"teisingai įvedėte onion adresą: net ir nedidelė klaida neleis Tor Naršyklei "
-"pasiekti internetinę svetainę."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-"Jei vis tiek nepavyksta prisijungti prie onion paslaugos, bandykite dar "
-"kartą vėliau. Gali būti laikinų ryšio problemų arba internetinės svetainės "
-"operatoriai galėjo be įspėjimo leisti jai atsijungti nuo tinklo."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-"Be to, galite įsitikinti, ar galite pasiekti kitas onion paslaugas, "
-"prisijungę prie [DuckDuckGo Onion "
-"paslaugos](http://3g2upl4pq6kufc4m.onion/)."
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "SAUGŪS RYŠIAI"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr ""
-"Sužinokite kaip apsaugoti savo duomenis naudojant Tor Naršyklę ir HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Jeigu asmeninė informacija, tokia kaip prisijungimo slaptažodis, keliauja "
-"nešifruotu pavidalu per internetą, tuomet slapta stebintys asmenys gali ją "
-"labai lengvai perimti. Jeigu prisijungiate prie kurios nors internetinės "
-"svetainės, turėtumėte įsitikinti, kad svetainė siūlo HTTPS šifravimą, kuris "
-"apsaugo nuo tokio slapto stebėjimo. Tai galite patikrinti URL adresų "
-"juostoje: jeigu jūsų ryšys yra šifruotas, adresas prasidės „https://“, o ne "
-"„http://“."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "SAUGUMO NUSTATYMAI"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "Tor Naršyklės konfigūravimas saugumui ir naudojimosi patogumui"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Pagal numatymą, Tor Naršyklė apsaugo jūsų saugumą šifruodama jūsų naršymo "
-"duomenis."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-"Galite dar labiau padidinti savo saugumą pasirinkdami išjungti tam tikras "
-"saityno ypatybes, kurios gali būti panaudotos, siekiant užpulti jūsų saugumą"
-" ar anonimiškumą."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-"Tai galite padaryti padidindami Tor naršyklės saugumo lygmenis, esančius "
-"skydo meniu."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-"Padidinus Tor Naršyklės saugumo lygmenį, kai kurios internetinės svetainės "
-"nustos tinkamai veikti, todėl turėtumėte apsvarstyti savo saugumo poreikį ir"
-" jums reikiamą naudojimosi patogumą."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### PRIEIGA PRIE SAUGUMO NUSTATYMŲ"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"Saugumo nustatymus galite pasiekti spustelėję Skydo piktogramą, esančią "
-"šalia Tor Naršyklės URL adresų juostos."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Norėdami peržiūrėti ir reguliuoti savo saugumo nustatymus, skydo meniu "
-"spustelėkite \"Išplėstiniai saugumo nustatymai…\"."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### SAUGUMO LYGMENYS"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-"Tor Naršyklės saugumo nustatymuose padidinus saugumo lygmenį, bus išjungtos "
-"arba dalinai išjungtos tam tikros naršyklės ypatybės, kad būtumėte apsaugoti"
-" nuo galimų atakų."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Šiuos nustatymus bet kuriuo metu galite vėl įjungti, reguliuodami saugumo "
-"lygmenį."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Standartinis"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"* Šiame lygmenyje visos Tor Naršyklės ir internetinių svetainių ypatybės yra"
-" įjungtos."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Saugesnis"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-"* Išjungia tas internetinių svetainių ypatybes, kurios, dažnai, būna "
-"pavojingos, dėl to kai kurios svetainės gali prarasti funkcionalumą."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* JavaScript yra išjungtas visose ne [HTTPS](/lt/secure-connections) "
-"internetinėse svetainėse; kai kurie šriftai ir matematiniai simboliai yra "
-"išjungti; garso ir vaizdo įrašai (HTML5 medija) yra atkuriami tik "
-"spustelėjus."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### Saugiausias"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-"* Šis lygmuo leidžia tik tas internetinių svetainių ypatybes, kurios yra "
-"reikalingos statinėms svetainėms bei pagrindinėms paslaugoms."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr "Šie pakeitimai paveikia paveikslus, mediją ir scenarijus."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-"* Pagal numatymą, Javascript yra išjungtas visose internetinėse svetainėse; "
-"kai kurie šriftai, piktogramos, matematiniai simboliai ir paveikslai yra "
-"išjungti; garso ir vaizdo įrašai (HTML5 medija) yra atkuriami tik "
-"spustelėjus."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "ATNAUJINIMAS"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Kaip atnaujinti Tor Browser"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-"Tor Naršyklė privalo būti nuolat atnaujinama. Jei tęsite naudoti pasenusią "
-"programinės įrangos versiją, galite būti pažeidžiami rimtoms saugumo "
-"spragoms, kurios statys į pavojų jūsų privatumą ir anonimiškumą."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"Kai bus išleista nauja programinės įrangos versija, Tor Naršyklė paprašys "
-"jūsų atsinaujinti: Torbutton piktograma parodys geltoną trikampį, o atvėrę "
-"Tor Naršyklę, galėsite matyti rašytinį atnaujinimo indikatorių. Programinę "
-"įrangą galite atnaujinti automatiškai arba rankiniu būdu."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### AUTOMATINIS TOR NARŠYKLĖS ATNAUJINIMAS"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-"Kai būsite paraginti atnaujinti Tor Naršyklę, spustelėkite ant mėsainio (≡) "
-"meniu (pagrindinio meniu), tada pasirinkite „Paleisti iš naujo, kad būtų "
-"atnaujinta Tor Naršyklė“."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-"Palaukite, kol atnaujinimas bus atsisiųstas ir įdiegtas, tuomet Tor Naršyklė"
-" pati pasileis iš naujo. Dabar, turėsite naujausią versiją."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### RANKINIS TOR NARŠYKLĖS ATNAUJINIMAS"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Kai būsite paraginti atnaujinti Tor Naršyklę, užbaikite naršymo seansą ir "
-"užverkite programą."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-"Pašalinkite Tor Naršyklę iš savo sistemos ištrindami aplanką, kuriame ji yra"
-" (išsamesnei informacijai, žiūrėkite skyrių [Šalinimas](/lt/uninstalling))."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"Apsilankykite https://www.torproject.org/download/ ir atsisiųskite "
-"naujausios Tor Naršyklės laidos egzempliorių, tuomet įdiekite jį kaip "
-"anksčiau."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "NESKLANDUMŲ ŠALINIMAS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Ką daryti, jei Tor Naršyklė neveikia"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Jeigu Tor Naršyklę naudojate pirmą kartą, netrukus po to, kai paleidote "
-"programą ir spustelėjote mygtuką „Prisijungti“, turėtumėte turėti galimybę "
-"pradėti naršyti internete naudojant Tor Naršyklę."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### GREITI PATAISYMAI"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Jeigu Tor Naršyklė neprisijungia, gali būti, kad tam yra paprastas "
-"sprendimas. Išbandykite kiekvieną iš šių veiksmų:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-"* Jūsų kompiuterio sistemos laikrodis privalo būti nustatytas teisingai, "
-"kitaip Tor negalės prisijungti."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Įsitikinkite, kad tuo pačiu metu nėra paleista jau kita Tor Naršyklė. Jei "
-"nesate tikri, ar Tor naršyklė yra paleista, tuomet paleiskite kompiuterį iš "
-"naujo."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-"* Įsitikinkite, kad bet kuri įdiegta antivirusinė programa netrukdo paleisti"
-" Tor. Jei nežinote, kaip tai padaryti, jums gali tekti ieškoti sprendimo "
-"antivirusinės programinės įrangos dokumentacijoje."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Laikinai išjunkite savo užkardą."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Ištrinkite Tor Naršyklę ir įdiekite ją dar kartą. Jei atnaujinate, ne tik "
-"perrašykite ankstesnius Tor Naršyklės failus; prieš tai įsitikinkite, kad "
-"jie buvo visiškai ištrinti."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### AR JŪSŲ RYŠYS YRA CENZŪRUOJAMAS?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"Jei vis tiek negalite prisijungti, gali būti, kad jūsų interneto paslaugų "
-"teikėjas cenzūruoja ryšius su Tor tinklu. Norėdami rasti galimus sprendimus,"
-" skaitykite skyrių [Apėjimas](/lt/circumvention)."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### ŽINOMOS PROBLEMOS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"Tor Naršyklė yra pastoviai plėtojama ir apie kai kurias programos klaidas "
-"yra žinoma, tačiau jos dar nepataisytos. Apsilankykite [žinomų problemų](/lt"
-"/known-issues) puslapyje, norėdami pamatyti, ar jūsų patiriama problema jau "
-"yra ten įvardinta."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "PAPILDINIAI, PRIEDAI IR JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr "Kaip Tor Naršyklė apdoroja priedus, papildinius ir JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### FLASH GROTUVAS"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"Vaizdo įrašų svetainės, tokios kaip „Vimeo“, vaizdo įrašų turiniui rodyti "
-"naudoja „Flash grotuvo“ papildinį. Deja, ši programinė įranga veikia "
-"nepriklausomai nuo Tor Naršyklės ir negali būti lengvai priversta paklusti "
-"Tor Naršyklės įgaliotojo serverio nustatymams. Todėl šis grotuvas, "
-"internetinės svetainės, kurioje lankotės, operatoriams ar išoriniam "
-"stebėtojui, gali atskleisti tikrąją jūsų buvimo vietą ir IP adresą. Dėl šios"
-" priežasties, pagal numatymą, „Flash grotuvas“ Tor naršyklėje yra išjungtas,"
-" o jį įjungti yra nerekomenduojama."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"Kai kurios vaizdo įrašų svetainės (tokios kaip YouTube) siūlo alternatyvius "
-"vaizdo įrašų pristatymo metodus, kurie nenaudoja Flash. Šie metodai gali "
-"būti suderinami su Tor Browser."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript yra programavimo kalba, kurią internetinės svetainės naudoja tam,"
-" kad pateiktų interaktyvius elementus, tokius kaip vaizdo įrašai, animacija,"
-" garso įrašai ir būsenos laiko linijos. Deja, JavaScript taip pat gali "
-"įgalinti išpuolius prieš naršyklės saugumą, o tai gali privesti prie "
-"deanonimizavimo."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"Tor Naršyklėje yra priedas, pavadinimu „NoScript“. Jį galite pasiekti "
-"mėsainio (≡) meniu (pagrindiniame meniu) „Nuostatose“, tada pasirinkę "
-"„Tinkinti“ ir nutempę „S“ piktogramą į viršutinę dešinę lango dalį. "
-"„NoScript“ leidžia jums atskirose internetinėse svetainėse valdyti "
-"JavaScript (ir kitus scenarijus), arba visiškai ją blokuoti."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"Naudotojai, kuriems, naršant internete, reikia aukšto saugumo lygmens, "
-"turėtų nusistatyti Tor Naršyklės [Saugumo lygmenį](../lt/security-settings) "
-"į „Saugesnį“ (kuris išjungia „JavaScript“ ne HTTPS internetinėse svetainėse)"
-" arba „Saugiausią“ (kuris tai atlieka visose internetinėse svetainėse). Vis "
-"dėlto, išjungus „JavaScript“ daugelis internetinių svetainių nebus tinkamai "
-"atvaizduojamos, todėl numatytasis Tor Naršyklės nustatymas yra leisti visoms"
-" internetinėms svetainėms vykdyti scenarijus „Standartinėje“ veiksenoje."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### NARŠYKLĖS PRIEDAI"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"Tor Naršyklė yra pagrįsta „Firefox“, todėl bet kuriuos su „Firefox“ "
-"suderinamus naršyklės priedus ar grafiniai apvalkalus taip pat galima "
-"įdiegti ir Tor Naršyklėje."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"Vis dėlto, vieninteliai priedai, kurie buvo išbandyti naudojimui Tor "
-"Naršyklėje, yra tie, kurie įtraukti pagal numatymą. Įdiegę bet kokius kitus "
-"naršyklės priedus, galite sugadinti Tor Naršyklės funkcionalumą arba sukelti"
-" rimtesnių problemų, kurios paveiks jūsų privatumą ir saugumą. Yra "
-"primygtinai nerekomenduojama diegti papildomų priedų, o be to, Tor Project "
-"neteiks palaikymo tokioms konfigūracijoms."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "ŠALINIMAS"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Kaip pašalinti Tor Našyklę iš savo sistemos"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Pašalinti Tor Naršyklę iš savo sistemos yra paprasta:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "Windows sistemos:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-"* Suraskite savo Tor Naršyklės aplanko ar programos vietą. Numatytoji vieta "
-"yra Darbalaukis."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* Ištrinkite Tor Naršyklės aplanką ar programą."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Išvalykite šiukšlinę."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "macOS sistemos:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-"* Suraskite savo Tor Naršyklės programos vietą. Numatytoji vieta yra "
-"Programų (angl. Applications) aplankas."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Perkelkite Tor Naršyklės programą į šiukšlinę."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* Pereikite į savo `~/Library/Application Support/` aplanką."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-"* Turėkite omenyje, kad naujesnėse macOS versijose Bibliotekos (angl. "
-"Library) aplankas yra paslėptas. Norėdami pereiti į šį aplanką, Ieškiklio "
-"(angl. Finder) programoje, meniu \"Eiti\" (angl. Go), pasirinkite \"Pereiti "
-"į aplanką\" (angl. Go to Folder...)."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" "
-"alt=\"Perėjimo į aplanką meniu pasirinkimas.\"/>"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-"* Tuomet lange parašykite \"~/Library/Application Support/\" ir spustelėkite"
-" Eiti (angl. Go)."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Perėjimo į aplanką langas.\"/>"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr ""
-"* Suraskite TorBrowser-Data aplanko vietą ir perkelkite jį į šiukšlinę."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"Turėkite omenyje, kad jeigu neįdiegėte Tor Naršyklės numatytoje vietoje "
-"(Programų (angl. Applications) aplanke), tuomet TorBrowser-Data aplanko "
-"vieta nebus `~/Library/Application Support/` aplanko viduje, o bus tame "
-"pačiame aplanke į kurį įdiegėte Tor Naršyklę."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "Linux sistemos:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* Suraskite savo Tor Naršyklės aplanko vietą. Linux sistemose nėra "
-"numatytosios vietos, vis dėlto, jeigu naudojate Tor Naršyklę anglų kalba, "
-"tuomet aplanko pavadinimas bus \"tor-browser_en-US\"."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Ištrinkite Tor Naršyklės aplanką."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-"Turėkite omenyje, kad nėra naudojama jūsų operacinės sistemos standartinė "
-"\"Šalinimo\" paslaugų programa."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "ŽINOMOS PROBLEMOS"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Tor reikia, kad jūsų sistemos laikrodis (ir jūsų laiko juosta) būtų "
-"nustatyti į teisingą laiką."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* Yra žinoma, kad šios užkardų programinės įrangos trukdo Tor ir jas gali "
-"tekti laikinai išjungti:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos antivirusinė programa, skirta Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Vaizdo įrašai, kurie reikalauja Adobe Flash yra neprieinami. Flash yra "
-"išjungtas saugumo sumetimais."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr ""
-"* Tor negali naudoti tinklų tilto, jeigu yra nustatytas įgaliotasis "
-"serveris."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* Tor Naršyklės paketo data yra 2000 m. sausio 1 d. 00:00:00 UTC. Tai "
-"užtikrina, kad kiekvienas programinės įrangos darinys yra tiksliai "
-"atkuriamas."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* Norėdami paleisti Tor Naršyklę Ubuntu sistemose, naudotojai turi įvykdyti "
-"apvalkalo scenarijų. Atverkite „Failus“ („Unity“ naršyklę), atverkite "
-"„Nuostatas“ → Elgsenos skirtuką → Nustatykite „Vykdyti vykdomuosius "
-"tekstinius failus, kai jie atveriami“ į „Klausti kiekvieną kartą“, tada "
-"spustelėkite Gerai."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-"* Tor Naršyklė taip pat gali būti paleisti iš komandų eilutės, Tor Naršyklės"
-" katalogo viduje įvykdant šią komandą:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* Konkrečiai „BitTorrent“ [nėra anoniminis per "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "PAVERSKITE TOR NARŠYKLĘ PERKELIAMA"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Kaip įdiegti Tor Naršyklę į keičiamąją laikmeną"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-"Jei pageidaujama, Tor Naršyklė gali būti paversta perkeliama, išskleidžiant "
-"ją iš archyvo tiesiai į keičiamąją laikmeną, tokią kaip USB atmintukas ar SD"
-" kortelė."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-"Rekomenduojama naudoti įrašomąją laikmeną, kad, prireikus, Tor Naršyklę būtų"
-" galima atnaujinti."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-"1. Prijunkite keičiamąją laikmeną ir ją suformatuokite. Tiks bet kokia failų"
-" sistema."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-"2. Pereikite į Tor Naršyklės [atsisiuntimo "
-"puslapį](https://www.torproject.org/download)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-"3. Atsisiųskite Windows `.exe` failą ir įrašykite jį tiesiai į savo "
-"laikmeną."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Rekomenduojama) Patikrinkite [failo "
-"parašą](https://support.torproject.org/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-"5. Kai atsisiuntimas užbaigtas, spustelėkite ant `.exe` failo ir pradėkite "
-"įdiegimo procesą"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-"6. Kai diegimo programa paklaus, kur įdiegti Tor Naršyklę, pasirinkite savo "
-"keičiamąją laikmeną."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-"1. Prijunkite keičiamąją laikmeną ir ją suformatuokite. Jūs *privalote* "
-"naudoti \"macOS Extended (Journaled)\" formatą."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-"3. Atsisiųskite macOS `.dmg` failą ir įrašykite jį tiesiai į savo laikmeną."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-"5. Kai atsisiuntimas užbaigtas, spustelėkite `.dmg` failą ir pradėkite "
-"įdiegimo procesą."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-"3. Atsisiųskite Linux `.tar.xz` failą ir įrašykite jį tiesiai į savo "
-"laikmeną."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-"5. Kai atsisiuntimas užbaigtas, išskleiskite archyvą tiesiai laikmenoje."
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "Užverti reklamjuostę"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "Sekimas, stebėjimas ir cenzūra internete yra plačiai paplitę."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "SUSIGRĄŽINKITE INTERNETĄ NAUDODAMI TOR"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "PAAUKOKITE DABAR"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Paaukokite šiandien ir Mozilla paaukos tiek pat, kiek ir jūs."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Atsisiųskite Tor Naršyklę"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"Atsisiųskite Tor naršyklę, kad galėtumėte patirti tikrą privatų naršymą be "
-"sekimo, stebėjimo ar cenzūros."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "Mūsų misija:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"Remti žmogaus teises ir laisves, kuriant ir diegiant laisvas ir atvirojo "
-"kodo anonimiškumo ir privatumo technologijas, palaikant jų neribotą "
-"prieinamumą ir naudojimą bei skleidžiant jų mokslinį ir visuotinį supratimą."
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Paaukoti"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Paaukokite dabar"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "Prenumeruokite mūsų naujienlaiškį"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr ""
-"Kas mėnesį gaukite naujienas apie atnaujinimus bei galimybes iš Tor Project:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "Prenumeruoti"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"Prekių ženklus, autorių teisių pranešimus ir taisykles naudojimui "
-"trečiosioms šalims galite rasti mūsų %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Meniu"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Ieškoti"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-"Ši vizualizacija rodo, kokia informacija yra matoma slapta stebintiems "
-"asmenims, kai naudojate ir nenaudojate Tor Naršyklės ir „HTTPS“ šifravimo:"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-"Spustelėkite mygtuką „Tor“, norėdami pamatyti kokie duomenys yra matomi "
-"stebėtojams, kai naudojatės Tor. Mygtukas taps žalias, nurodydamas, kad Tor "
-"yra įjungtas."
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"Spustelėkite mygtuką „HTTPS“, norėdami pamatyti kokie duomenys yra matomi "
-"stebėtojams, kai naudojatės HTTPS. Mygtukas taps žalias, nurodydamas, kad "
-"HTTPS yra įjungtas."
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-"Kai abu mygtukai yra žali, matote duomenis, kurie yra matomi stebėtojams, "
-"kai naudojate abu įrankius."
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-"Kai abu mygtukai yra pilki, matote duomenis, kurie yra matomi stebėtojams, "
-"kai nenaudojate nei vieno įrankio."
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "POTENCIALIAI MATOMI DUOMENYS"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "Internetinė svetainė, kurioje lankomasi."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "naudotojas / slaptažodis"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Tapatybės nustatymui naudojamas naudotojo vardas ir slaptažodis."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "duomenys"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "Persiunčiami duomenys."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "vieta"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-"Apsilankymui internetinėje svetainėje naudojamo kompiuterio tinklo vieta "
-"(viešasis IP adresas)."
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Ar Tor yra naudojamas, ar ne."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr "Apsisaugokite nuo sekimo ir stebėjimo. Apeikite cenzūrą."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor Project | Tor Naršyklės naudotojo vadovas"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Temos"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Prie šio puslapio prisidėjo:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Taisyti šį puslapį"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Siūlyti atsiliepimą"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Pastovioji nuoroda"
diff --git a/contents+ms.po b/contents+ms.po
deleted file mode 100644
index 524e0f54f7..0000000000
--- a/contents+ms.po
+++ /dev/null
@@ -1,2139 +0,0 @@
-# Translators:
-# erinm, 2019
-# Emma Peel, 2019
-# abuyop <abuyop(a)gmail.com>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: abuyop <abuyop(a)gmail.com>, 2020\n"
-"Language-Team: Malay (Malaysia) (https://www.transifex.com/otf/teams/1519/ms_MY/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ms_MY\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr ""
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr ""
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr ""
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr ""
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr ""
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr ""
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr ""
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr ""
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr ""
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr ""
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr ""
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr ""
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr ""
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr ""
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr ""
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr ""
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr ""
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr ""
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr ""
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr ""
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr ""
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr ""
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr ""
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr ""
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr ""
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr ""
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr ""
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr ""
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr ""
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr ""
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr ""
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr ""
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
deleted file mode 100644
index 5ae7ef3716..0000000000
--- a/contents+pt-BR.po
+++ /dev/null
@@ -1,2219 +0,0 @@
-# Translators:
-# Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>, 2019
-# Cy Belle <cyb3ll3(a)protonmail.com>, 2019
-# erinm, 2019
-# blueboy, 2019
-# Anderson Santos <anderson.jms94(a)hotmail.com>, 2019
-# C. E., 2019
-# m tk, 2019
-# Caio Volpato <caio.volpato(a)riseup.net>, 2019
-# Gus, 2019
-# Emma Peel, 2020
-# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2020
-# Communia <ameaneantie(a)riseup.net>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Communia <ameaneantie(a)riseup.net>, 2020\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"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Manual do Navegador Tor "
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Sobre"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Documentação"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Imprensa"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Blog"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Boletim de notícias"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Contato"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Sobre o Navegador Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Fazendo download"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Executando o Navegador Tor pela primeira vez"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Transportadores plugáveis"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Contornar a censura"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Pontes"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gerenciando identidades"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Serviços Onion"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr ""
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* O seu provedor de Internet, assim como toda pessoa que tentar monitorar a "
-"sua conexão local, não conseguirá rastrear os seus movimentos na Internet, "
-"nem os nomes e endereços de sites que você visitar."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor é uma rede de túneis virtuais que permite melhorar a sua privacidade e "
-"segurança na Internet. O Tor envia o seu tráfego por três servidores "
-"aleatórios (também conhecidos como *relés*) na rede Tor. O último relé do "
-"circuito (o \"relé de saída\") envia o tráfego para fora, na Internet "
-"pública."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"A imagem acima ilustra uma pessoa que visita diversos sites usando Tor. Os "
-"computadores verdes do meio representam relés da rede Tor, enquanto as três "
-"chaves representam camadas de criptografia entre aquela pessoa e cada relé."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Como fazer download do Navegador Tor"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"A maneira mais segura e simples de baixar o Navegador Tor é acessar o site "
-"oficial do Projeto Tor em https://www.torproject.org/pt-BR/download."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"A sua conexão ao site será segura usando [HTTPS](/pt-BR/secure-connections),"
-" que torna toda tentativa de interferência muito mais difícil. "
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Porém, pode acontecer de você não conseguir acessar o site do Tor Project: "
-"por exemplo, ele pode estar bloqueado na sua rede."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Se isso acontecer, você pode usar um dos métodos de download alternativos "
-"listados abaixo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Saiba como usar o Navegador Tor pela primeira vez"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "CONTORNAR A CENSURA"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Outros transportadores plugáveis, como \"meek\", usam outros técnicas "
-"anticensura, que não se baseiam em pontes. Você não precisa obter endereços "
-"de pontes para usar esses transportadores."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr "* Visitar https://bridges.torproject.org/ e seguir as instruções, ou"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Quando você se conecta a um site, não é apenas os operadores daquele site "
-"que podem registrar informações sobre a sua visita. A maior parte dos sites "
-"atuais usam inúmeros serviços terceirizados, inclusive os de botões 'Curtir'"
-" das redes sociais, rastreadores de dados e janelas de publicidade, capazes "
-"de associar a sua atividade entre os vários sites que você visita."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Esta opção é útil se você quiser impedir que as suas atividades futuras no "
-"navegador sejam relacionadas à sua atividade anterior. Se selecionada, ela "
-"fechará todas as abas e janelas abertas, excluirá todas as informações "
-"privadas, tais como cookies e histórico de navegação, e usará novos "
-"circuitos do Tor para todas as conexões. O Navegador Tor lhe mostrará um "
-"aviso de que todas atividades e downloads serão interrompidos. Então, leve "
-"isso em conta antes de clicar em \"Nova Identidade\"."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Serviços onion (anteriormente conhecidos como \"serviços ocultos\") são "
-"serviços (como websites) que somente podem ser acessados por meio da rede "
-"Tor."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* A localização de um serviço onion e o endereço de IP são ocultos, tornando"
-" difícil para adversários censurará-lo ou identificarem seus operadores."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr "Saiba como proteger os seus dados usando o Navegador Tor e HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"O Navegador Tor exibirá um alerta para que você atualize o programa assim "
-"que uma nova versão for publicada: o ícone do Torbutton exibirá um triângulo"
-" amarelo e você verá um indicação escrita de atualização quando o Navegador "
-"Tor abrir. Você poderá atualizá-lo automáticamente ou manualmente. "
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Quando a você for requerida a atualização do Navegador Tor, termine a sessão"
-" de navegação e feche o programa."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"Visite https://www.torproject.org/pt-BR/download/, faça o download de uma "
-"cópia da última versão do Navegador Tor e instale-a como antes."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "SOLUÇÃO DE PROBLEMAS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Certifique-se de que um outro Navegador Tor não esteja já em "
-"funcionamento. Se você não tiver certeza, reinicie o computador."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Desative temporariamente o seu firewall."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "PLUGINS, ADD-ONS E JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"Websites de vídeos, tal como Vimeo, utilizam o plugin Flash Player para "
-"exibir conteúdo de vídeo. Infelizmente, esse programa opera "
-"independentemente do Navegador Tor e não pode ser facilmente forçado a "
-"obedecer às configurações de proxy do Navegador Tor. Por isso, ele pode "
-"revelar a sua real localização e endereço de IP aos operadores do website ou"
-" a um observador exterior. Por essa razão, o Flash é desabilitado por padrão"
-" no Navegador Tor e não é recomendado ativá-lo ."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"As pessoas que necessitam de um alto grau de segurança em sua navegação web "
-"devem ajustar o [Nível de Segurança] a \"Mais Seguro\" (que desabilita o "
-"Javascript em todos os websites sem HTTPS) ou \"O Mais Seguro\". Entretanto,"
-" o JavaScript desabilitado impede a exibição correta de diversos websites. "
-"Por isso, a configuração padrão do Tor Browser permite que todos os "
-"websites executem scripts no modo \"Padrão\"."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Remover o Navegador Tor do seu sistema é simples:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Tor precisa que o seu relógio de sistema (e a sua zona horária) estejam "
-"definidos corretamente."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* Os seguintes programas de firewall são conhecidos por interferirem no Tor "
-"e precisam ser desabilitados temporariamente:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Vídeos que requerem Adobe Flash não são disponíveis. Flash foi "
-"desabilitado por questões de segurança. "
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* O pacote do Navegador Tor data de \"January 1, 2000 00:00:00 UTC\". Essa "
-"notação garante que todos as compilações do programa sejam reproduzíveis com"
-" exatidão."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr ""
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr ""
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr ""
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr ""
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr ""
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Baixe o Tor Browser"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "Nossa missão:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr ""
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr ""
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr ""
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr ""
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr ""
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr ""
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr ""
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr ""
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr ""
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr ""
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr ""
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr ""
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr ""
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Nome de usuário e senha usados para autentificação."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "dados"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr ""
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr ""
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr ""
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr ""
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor Project | Manual do Navegador Tor"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Tópicos"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr ""
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr ""
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr ""
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Link permanente"
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
deleted file mode 100644
index a567121ddc..0000000000
--- a/contents+pt-PT.po
+++ /dev/null
@@ -1,2354 +0,0 @@
-# Translators:
-# Emma Peel, 2019
-# erinm, 2019
-# Rui <xymarior(a)yandex.com>, 2020
-# Hugo9191 <hugoncosta(a)gmail.com>, 2020
-# Manuela Silva <manuelarodsilva(a)gmail.com>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Manuela Silva <manuelarodsilva(a)gmail.com>, 2020\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"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_PT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Manual do Utilizador do Tor Browser"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Sobre"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Documentação"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Imprensa"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Blogue"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Boletim informativo"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Apoio"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Comunidade"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "Contactar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "Carreiras"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Sobre o Tor Browser"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "Transferência"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Executar o Tor Browser pela primeira vez"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Transportes ligáveis"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Contornar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Pontes"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gerir Identidades"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Serviços Onion"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Ligações Seguras"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Definições de Segurança"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Atualização"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Plug-ins"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Resolução de Problemas"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Desinstalação"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Problemas conhecidos"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Traduzir o Tor"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tornar o Tor Browser portátil"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Instalação"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "SOBRE O TOR BROWSER"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Saiba o que o Tor Browser pode fazer para proteger a sua privacidade e "
-"anonimato"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"Por predefinição, o Tor Browser não mantém qualquer histórico de navegação. "
-"OS ''cookies'' são apenas válidos para uma única sessão (até que Tor Browser"
-" seja fechado ou é solicitada uma [Nova Identidade](/managing-identities"
-"/#new-identity))."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### COMO É QUE O TOR FUNCIONA"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor é uma rede de túneis virtuais que permite-lhe melhorar a sua privacidade"
-" e a segurança na Internet. Tor envia o seu tráfego através de três "
-"servidores aleatórios (também conhecidos como *retransmissores*) na rede "
-"Tor. O último retransmissor no circuito (o \"retransmissor de saída\") "
-"depois envia o tráfego para fora, para a Internet pública."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "TRANSFERÊNCIA"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Como transferir o Tor Browser"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"A forma mais simples e segura para transferir o Tor Browser é através do "
-"''site'' da Web oficial do Tor Browser em "
-"https://www.torproject.org/download."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"A sua ligação ao ''site'' será protegida utilizando [HTTPS](/secure-"
-"connections), o que torna muito mais difícil para alguém manipulá-la."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Contudo, pode haver alturas em que não consegue aceder ao ''site'' da Web do"
-" Projeto Tor: por exemplo, este poderá estar bloqueado na sua rede."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Se isto acontecer, pode utilizar um dos métodos de transferência "
-"alternativos listados em baixo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### MIRRORS"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Se não conseguir transferir o Tor Browser do ''site'' da Web oficial do "
-"Projeto Tor, pode tentar transferi-lo de um dos nossos ''mirrors'' oficiais,"
-" [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) ou [CCC](https://tor.ccc.de)."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor é um serviço que responde automaticamente às mensagens com "
-"hiperligações para a versão mais recente do Tor Browser, alojado em vários "
-"locais, tais como Dropbox, GitHub e Google Drive."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### UTILIZAR GETTOR VIA E-MAIL:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"Envie uma mensagem para gettor(a)torproject.org e escreva no corpo da mensagem"
-" apenas uma das palavras “windows”, “osx” ou “linux” (sem as aspas) de "
-"acordo com o seu sistema operativo."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor irá responder com uma mensagem com hiperligações com as quais pode "
-"transferir o pacote do Tor Browser, a assinatura criptográfica (necessária "
-"para verificar a transferência), a impressão digital da chave utilizada para"
-" assinar e a soma de verificação do pacote. Poderá ser-lhe oferecida uma "
-"escolha entre um ''software'' de “32 bits” ou de “64 bits” conforme o modelo"
-" do computador que está a utilizar."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### UTILIZAR GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Para obter as hiperligações para transferir o Tor Browser em chinês para o "
-"Linux, envie uma mensagem para gettor(a)torproject.org com as palavras \"linux"
-" zh\"."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "INSTALAÇÃO"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Instalar o Tor Browser"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Para Windows:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Navegar para a [página de "
-"transferência](https://www.torproject.org/download) do Tor Browser."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Transferir o ficheiro `.exe` do Windows"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Recomendado) Verificar a [assinatura do "
-"ficheiro](https://support.torproject.org/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Quando a transferência estiver concluída, clique duplo no ficheiro "
-"`.exe`. Conclua o processo do assistente de instalação."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "Para macOS:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. Transferir o ficheiro `.dmg` do macOS"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. Quando a transferência estiver concluída, clique duplo no ficheiro "
-"`.dmg`. Conclua o processo do assistente de instalação."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "Para GNU/Linux:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. Transferir o ficheiro `.tar.xz` do GNU/Linux"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. Quando a transferência estiver concluída, extraia o arquivo com o comando"
-" `tar -xf [TB archive]` ou utilizando um gestor de arquivos."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. Terá de dizer ao seu GNU/Linux que pretende a capacidade de executar "
-"''scripts'' de ''shell'' através da interface gráfica."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Navegar até à diretoria extraída recentemente do Tor Browser."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"Clique com o botão direito em `start-tor-browser.desktop`, abra "
-"\"Propriedades\" ou \"Preferências\" e altere a permissão para permitir a "
-"execução do ficheiro como um programa."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr "Duplo clique no ícone para iniciar o Tor Browser pela primeira vez."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Alternativamente, dentro da diretoria do Tor Browser, também pode iniciá-"
-"lo na linha de comandos, executando:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "EXECUTAR O TOR BROWSER PELA PRIMEIRA VEZ"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Saiba como utilizar o Tor Browser pela primeira vez"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Quando inicia o Tor Browser pela primeira vez, irá ver a janela das "
-"\"Definições\" da Rede Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Isto oferece-lhe a opção para se ligar diretamente à rede Tor, ou para "
-"configurar o Tor Browser para a sua ligação."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### LIGAR"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"Na maioria dos casos, escolher \"Ligar\" irá permitir-lhe ligar à rede Tor "
-"sem qualquer configuração adicional."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Depois de clicado, irá aparecer uma barra de estado, que mostra o progresso "
-"da ligação do Tor."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Se estiver numa ligação relativamente rápida, mas esta barra parecer estar "
-"bloqueada num ponto determinado, consulte a página de [Resolução de "
-"Problemas](/troubleshooting) para ajudar a resolver o problema."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### CONFIGURAR"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "CONTORNAR"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "O que fazer se a rede Tor estiver bloqueada"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"O acesso direto à rede Tor pode às vezes ser bloqueado pelo seu \"Provedor "
-"de Serviço à Internet\" ou por um governo."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"Tor Browser inclui algumas ferramentas de evasão para contornar estes "
-"bloqueios. Estas ferramentas são chamadas de \"transportes de ligação\"."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### TIPOS DE TRANSPORTES DE LIGAÇÃO"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Atualmente, existem três tipos de transportes de ligação disponíveis, mas "
-"estão a ser desenvolvidos mais."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obs4 faz com que o tráfego do Tor pareça aleatório, e também evita que os "
-"censores possam encontrar pontes com uma pesquisa na Internet. As pontes "
-"obfs4 têm menos probabilidade de serem bloqueadas do que as pontes obfs3."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"Os transportes \"meek\" fazem com que pareça que está a navegar por um "
-"grande ''site'' da Web em vez de utilizar o Tor. meek-azure faz com que "
-"pareça que está a utilizar um ''site'' da Web da Microsoft."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake é um aperfeiçoamento do Flashproxy. Este envia o seu tráfego "
-"através de WebRTC, um protocolo P2P com matriz NAT integrada."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### UTILIZANDO OS TRANSPORTES DE LIGAÇÃO"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### QUE TRANSPORTE É QUE EU DEVEREI UTILIZAR?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Leia a secção [Pontes](/pt-PT/bridges/) para saber o que são as pontes e "
-"como as obter."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "PONTES"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"A maioria dos \"Transportes de Ligação\", tal como obfs4, baseiam-se na "
-"utilização de retransmissores de \"ponte\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"A maioria dos [Transportes de Ligação](/pt-PT/circumvention), tal como "
-"obfs4, baseiam-se na utilização de retransmissores de \"ponte\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Tal como as retransmissores Tor comuns, as pontes são executadas por "
-"voluntários; ao contrário dos retransmissores comuns, contudo, estes não são"
-" listados publicamente, por isso um adversário não os pode identificar "
-"facilmente."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"Utilizar pontes em combinação com os transportes de ligação ajuda a "
-"disfarçar o facto de que está a utilizar o Tor, mas pode abrandar a ligação "
-"em comparação com os retransmissores Tor comuns."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Os outros transportes de ligação, tal como \"meek\", utilizam outras "
-"técnicas contra a censura que não se baseiam em pontes. Não precisa de obter"
-" os endereços de ponte para utilizar estes transportes."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### OBTENÇÃO DE ENDEREÇOS DE PONTE"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Porque os endereços de ponte não são públicos, terá de os solicitar. Tem "
-"algumas opções:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-"* Visite https://bridges.torproject.org/?lang=pt_PT e siga as instruções, ou"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Envie uma mensagem para bridges(a)torproject.org de um endereço de "
-"''e-mail'' do Gmail ou do Riseup"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Utilize MOAT para obter as pontes dentro do Tor Browser."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### UTILIZAR MOAT"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Se estiver a iniciar o Tor Browser pela primeira vez, clique em "
-"\"Configurar\" para abrir a janela das \"Definições\" da Rede Tor."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-"Caso contrário, clique em \"Preferências\" no menu \"hamburger\" (menu "
-"principal) e depois em \"Tor\" na barra lateral."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"Na janela das \"Definições\" da Rede Tor, selecione \"O Tor é censurado no "
-"meu país\". "
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"Depois, selecione \"Solicitar uma ponte do torproject.org\" e clique em "
-"\"Solicitar uma ponte...\""
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete o CAPTCHA e clique em \"Submeter\"."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### INSERIR ENDEREÇOS DE PONTE"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr ""
-"Assim que tiver obtido alguns endereços de ponte, terá de os inserir no Tor "
-"Launcher."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Se estiver a iniciar o Tor Browser pela primeira vez, clique em "
-"\"Configurar\" para abrir a janela das \"Definições\" da Rede Tor. Caso "
-"contrário, clique em \"Preferências\" no menu \"hamburger\" (menu principal)"
-" e depois em \"Tor\" na barra lateral."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"Na secção \"Pontes\", selecione a caixa \"Utilizar uma ponte\", depois, "
-"selecione \"Fornecer uma ponte que eu conheça\" e digite cada um dos "
-"endereços de ponte numa linha separada."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Se a sua ligação falha, as pontes que recebeu podem estar desligadas. Por "
-"favor, utilize um dos métodos acima para obter mais endereços de ponte e "
-"tente novamente."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "GESTÃO DE IDENTIDADES"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Saiba como controlar a informação de identificação pessoal no Tor Browser"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### A BARRA DO URL"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Tor Browser centra a sua experiência da Web em torno da sua interação com os"
-" sites da Web na barra de caminho (URL). Mesmo que aceda a dois sites "
-"diferentes que utilizem o mesmo serviço de monitorização oferecido por "
-"terceiros, o Tor Browser irá forçar o tráfego do conteúdo por dois circuitos"
-" Tor diferentes, e assim, o rastreador não saberá que ambas as ligações são "
-"originárias do seu navegador."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### INICIAR A SESSÃO COM O TOR"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Apesar do Tor Browser ser concebido para permitir um total anonimato do "
-"utilizador na Web, em algumas situações também faz sentido utilizar o Tor "
-"para visitar ''sites'' da Web que requerem nomes de utilizador, palavras-"
-"passe, ou outra informação de identificação."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Se inicia a sessão num ''site'' da Web utilizando um navegador comum, também"
-" revela o seu endereço de IP e a sua localização geográfica no processo. O "
-"mesmo acontece quando envia uma mensagem. Iniciar a sessão na sua conta de "
-"uma rede social ou contas de ''e-mail'' utilizando o Tor Browser pode "
-"escolher exatamente qual a informação que deseja revelar nos ''sites'' da "
-"Web que navega. Iniciar a sessão utilizando o Tor Browser também é útil se o"
-" ''site'' da Web que está a tentar aceder está censurado na sua rede."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Quando inicia a sessão num ''site'' da Web com o Tor, tenha em conta alguns "
-"pontos importantes:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Consulte a página [Ligações Seguras](/pt-PT/secure-connections) para obter"
-" informação importante sobre como proteger a sua ligação quando inicia a "
-"sessão. "
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Tor Browser geralmente faz com que a sua ligação pareça ser proveniente de"
-" uma parte totalmente diferente do mundo. Alguns ''sites'' da Web, tais como"
-" bancos e provedores de ''e-mail'', podem interpretar isto como um sinal de "
-"que a sua conta foi pirateada ou comprometida, e podem bloquear ou suspender"
-" a sua conta de utilizador. A única maneira para resolver isto é seguir o "
-"procedimento recomendado do ''site'' para a recuperação de conta, ou "
-"contactar os operadores e explicar a situação."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### ALTERAÇÃO DE IDENTIDADES E CIRCUITOS"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"Tor Browser contém as opções de “Nova Identidade” e “Novo Circuito Tor para "
-"este Site”, localizadas no menu principal (menu hambúrguer)."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### NOVA IDENTIDADE"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### NOVO CIRCUITO TOR PARA ESTE SITE"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "SERVIÇOS ONION"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Serviços que estão apenas acessíveis utilizando o Tor"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Os serviços Onion (anteriormente conhecidos como \"serviços ocultos\") são "
-"serviços (como ''sites'' da Web) que apenas podem ser acedidos através da "
-"rede Tor."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"Os serviços Onion oferecem uma série de vantagens em relação aos serviços na"
-" Web não privados:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### COMO ACEDER A UM SERVIÇO ONION"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Como qualquer outro site da Web, irá precisar de saber o endereço do serviço"
-" \"onion\" para poder ligar ao mesmo. Um endereço \"onion\" é uma sequência "
-"de 16 letras e números (e no formato V3, 56), na maioria aleatórios, "
-"seguidos por \".onion\"."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### RESOLUÇÃO DE PROBLEMAS"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "LIGAÇÕES SEGURAS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr "Saiba como proteger os seus dados utilizando o Tor Browser e HTTPS"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Se a informação pessoal, tal como uma palavra-passe da sessão, viaja pela "
-"Internet sem serem encriptada, esta pode ser facilmente intercetada por um "
-"espião. Se estiver a iniciar a sessão numa conta em qualquer site da Web, "
-"certifique-se que o site oferece encriptação HTTPS, que protege contra este "
-"tipo de espionagem. Pode verificar isso na barra de endereço: se sua ligação"
-" está encriptada, o endereço começará com “https://” em vez de “http://”."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "DEFINIÇÕES DE SEGURANÇA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "Configurar o Tor Browser para segurança e usabilidade"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Por predefinição, o Tor Browser protege a sua segurança, encriptando os seus"
-" dados de navegação. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### ACEDER ÀS DEFINIÇÕES DE SEGURANÇA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"As \"Definições de Segurança\" podem ser acedidas clicando no ícone "
-"\"Escudo\" ao lado da barra do URL do Tor Browser."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Para ver e ajustar as suas \"Definições de Segurança\", clique no botão "
-"\"Definições de Segurança Avançadas...\" no menu com o escudo."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### NÍVEIS DE SEGURANÇA"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Pode ativar estas definições novamente a qualquer momento ajustando o seu "
-"'Nível de Segurança'."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Padrão"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"* Neste nível, todas as funcionalidades do Tor Browser e de ''site'' da Web "
-"estão ativadas."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Mais Seguro"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### O Mais Seguro"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr ""
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "ATUALIZAÇÃO"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Como atualizar o Tor Browser"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### ATUALIZAR AUTOMATICAMENTE O TOR BROWSER"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### ATUALIZAR MANUALMENTE O TOR BROWSER"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "RESOLUÇÃO DE PROBLEMAS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "O que fazer se o Tor Browser não funcionar"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Deveria conseguir iniciar a navegação na Web utilizando o Tor Browser logo "
-"após a execução do programa, e clicar no botão \"Ligar\", se estiver a "
-"utilizá-lo pela primeira vez."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### CORREÇÕES RÁPIDAS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Se o Tor Browser não liga, poderá haver uma solução simples. Tente cada uma "
-"das seguintes:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Desative temporariamente a sua proteção (''firewall'')."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Elimine o Tor Browser e instale-o novamente. Se atualizar, não substitua "
-"apenas os ficheiros anteriores do Tor Browser; certifique-se primeiro que os"
-" mesmos são totalmente eliminados."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### A SUA LIGAÇÃO ESTÁ CENSURADA?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### PROBLEMAS CONHECIDOS"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "PLUG-INS, EXTRAS E JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr "Como o Tor Browser lida com os extras, plug-ins e JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### FLASH PLAYER"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### EXTRAS DE NAVEGADOR"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"O Tor Browser é baseado no Firefox, e quaisquer extras ou temas do navegador"
-" que sejam compatíveis com o Firefox também podem ser instalados no Tor "
-"Browser."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "DESINSTALAÇÃO"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Como remover o Tor Browser do seu sistema"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Remover o Tor Browser do seu sistema é simples:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "No Windows:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Limpe a sua 'Reciclagem'"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "No macOS:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Mova o Tor Browser para o \"Lixo\"."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* Vá para a sua pasta `~/Library/Application Support/`."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "No Linux:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* Localize a pasta do seu Tor Browser. No Linux, não existe uma localização "
-"predefinida, contudo, a pasta terá o nome de \"tor-browser_en-US\", se "
-"estiver a executar o Tor Browser em inglês."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Elimine a pasta do Tor Browser."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "PROBLEMAS CONHECIDOS"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus para Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "TORNAR O TOR BROWSER PORTÁTIL"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Como instalar o Tor Browser num dispositivo removível"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Recomendado) Verificar a [assinatura dos "
-"ficheiros](https://support.torproject.org/tbb/how-to-verify-signature/)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr ""
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "A monitorização, vigilância, e a censura são comuns ''on-line''."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "CONTROLE A INTERNET COM O TOR"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "DOAR AGORA"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Doe hoje, e a Mozilla corresponderá à sua doação."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Transferir Tor Browser"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"Transfira o Tor Browser para experimentar uma navegação privada real sem "
-"monitorização, vigilância ou censura."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "A nossa missão:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Doar"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Doar Agora"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "Subscreva o nosso Boletim Informativo"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr "Receba atualizações mensais e oportunidades do projeto Tor:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "Registar"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"As marcas registadas, avisos de direitos de autor, e regras de utilização "
-"por terceiros podem ser encontradas em %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Menu"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Pesquisar"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "DADOS POTENCIALMENTE VISÍVEIS"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "O ''site'' a ser visitado."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "utilizador / por semana"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Nome de utilizador e palavra-passe utilizados para autenticação."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "dados"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "Os dados a serem transmitidos."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "localização"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Se o Tor está a ser ou não utilizado."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr "Defenda-se contra a monitorização e vigilância. Contorne a censura."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Projeto Tor | Manual do Tor Browser"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Tópicos"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Colaboradores desta página:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Edite esta página"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Submeter Comentário"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Ligação Permanente"
diff --git a/contents+tr.po b/contents+tr.po
deleted file mode 100644
index 2977b3e9c7..0000000000
--- a/contents+tr.po
+++ /dev/null
@@ -1,2628 +0,0 @@
-# Translators:
-# Alperen Kitapçı <alperenmirac(a)gmail.com>, 2018
-# Cenk Yıldızlı <goncagul(a)national.shitposting.agency>, 2019
-# ilkeryus <ilkeryus(a)gmail.com>, 2019
-# Volkan Gezer <volkangezer(a)gmail.com>, 2019
-# erinm, 2019
-# dersteppenwolfx, 2019
-# Emma Peel, 2020
-# Kaya Zeren <kayazeren(a)gmail.com>, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2020\n"
-"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Tor Browser Kullanıcı Rehberi"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "Hakkında"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "Belgeler"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "Basın"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "Günlük"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "Duyuru"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "Destek"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "Topluluk"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "İletişim"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "İş Olanakları"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "Tor Browser Hakkında"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "İndirme"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor Browser uygulamasını ilk kez çalıştırma"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "Değiştirilebilir Taşıyıcılar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "Engellemeyi aşma"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "Köprüler"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Kimlik yönetimi"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "Onion Hizmetleri"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "Güvenli Bağlantılar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "Güvenlik Düzeyi Ayarı"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "Güncelleme"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "Uygulama Ekleri"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "Sorun çözme"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "Kaldırma"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "Bilinen sorunlar"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "Tor Çevirisine Katkıda Bulunabilirsiniz"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor Browser Uygulamasını Taşınabilir Yapmak"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "Kurulum"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "TOR BROWSER HAKKINDA"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr ""
-"Tor Browser ile anonim kalarak kişisel gizliliğinizi nasıl "
-"koruyabileceğinizi öğrenin"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr ""
-"Tor Browser kişisel gizliliğinizi ve anonim kalmanızı sağlamak için Tor "
-"ağını kullanır. Tor ağı kullanmanın iki temel amacı vardır:"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr ""
-"* İnternet hizmeti sağlayıcınız ya da bağlantınızı yerel olarak izleyenler, "
-"İnternet üzerinde yaptığınız işlemleri ve ziyaret ettiğiniz web sitelerinin "
-"ad ve adreslerini izleyemez."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* Web sitesi ve kullandığınız hizmetleri sağlayanlar ile onları izleyenler "
-"gerçek İnternet (IP) adresiniz yerine yalnız Tor ağından bir bağlantı "
-"geldiğini görür ve siz kendinizi açık etmedikçe kim olduğunuzu bilemez."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr ""
-"Ek olarak Tor Browser, web sitelerinin \"parmak izi\" almasını ya da web "
-"tarayıcı ayarlarınıza göre sizin kim olduğunuzun belirlenmesini engeller."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"Varsayılan olarak Tor Browser tarama geçmişini kaydetmez. Çerezler yalnız "
-"tek bir oturum için geçerlidir (Tor Browser kapatılana ya da [Yeni "
-"Kimlik](/tr/managing-identities/#new-identity) bağlantısına tıklanana "
-"kadar)."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### TOR NASIL ÇALIŞIR"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor, Internet üzerinde kişisel gizliliğinizi koruyan ve güvenliğinizi "
-"arttıran bir sanal tüneller ağıdır. Bağlantı trafiğinizi rastgele seçilmiş "
-"üç sunucu üzerinden Internet üzerine ulaştırır (bunlar *aktarıcı* olarak da "
-"bilinir). Devredeki son aktarıcı (\"çıkış aktarıcısı\") trafiği herkese açık"
-" İnternet üzerine aktarır."
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"Yukarıdaki görsel farklı sitelere Tor üzerinden nasıl erişildiğini gösterir."
-" Ortadaki yeşil bilgisayarlar Tor ağındaki aktarıcıları, üç anahtar da "
-"kullanıcı ve her bir aktarıcı arasındaki şifreleme katmanlarını temsil eder."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "İNDİRMEK"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "Tor Browser nasıl indirilir"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"Tor Browser en kolay ve güvenli olarak resmi Tor Project web sitesinden "
-"https://www.torproject.org/tr/download adresinden indirilebilir."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"Siteyle olan bağlantınızın güvenliği [HTTPS](/tr/secure-connections) "
-"kullanılarak sağlanır ve bu da bağlantınızın başkaları tarafından "
-"kurcalanmasını oldukça zorlaştırır."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr ""
-"Bununla birlikte, Tor Project web sitesine erişemediğiniz zamanlar olabilir."
-" Örneğin, Tor web sitesi de ağınızda engellenmiş olabilir."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr ""
-"Bu durumda, aşağıdaki alternatif indirme yöntemlerinden birini "
-"kullanabilirsiniz."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### YANSILAR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"Tor Browser uygulamasını indirmek için resmi Tor Projesi web sitesine "
-"erişemiyorsanız [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) ya da [CCC](https://tor.ccc.de) "
-"resmi yansılarından birinden indirmeyi deneyebilirsiniz."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GETTOR"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor; iletileri otomatik olarak yanıtlayarak, Dropbox, Google Drive ve "
-"GitHub gibi çeşitli konumlarda barındırılan en son Tor Browser sürümü "
-"bağlantılarını gönderen bir hizmettir."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### E-POSTA İLE GETTOR KULLANIMI:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"ileti metnine kullandığınız işletim sistemine göre \"windows\", \"osx\" ya "
-"da \"linux\" (tırnak işaretleri olmadan) yazarak gettor(a)torproject.org "
-"adresine bir e-posta gönderin."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor hizmeti, Tor Browser paketini indirebileceğiniz bağlantılar, "
-"şifrelenmiş imza (indirmeyi doğrulamak için), imzayı oluşturmak için "
-"kullanılan parmak izi ve paketin sağlama değerini içeren bir e-posta ile "
-"yanıt verir. Kullandığınız bilgisayarın modeline bağlı olarak \"32-bit\" ya "
-"da \"64-bit\" uygulamalardan birini seçmeniz istenebilir."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### JABBER/XMPP (JITSI, COYIM, VB.) İLE GETTOR KULLANIMI:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"Linux üzerinde çalışacak Çince Tor Browser indirme bağlantılarını almak için"
-" gettor(a)torproject.org adresine içinde \"linux zh\" sözcükleri bulunan bir "
-"ileti gönderin."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "KURULUM"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "Tor Browser Kurulumu"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Windows için:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr ""
-"1. Tor Browser [indirme sayfasına](https://www.torproject.org/tr/download) "
-"gidin."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. Windows `.exe` dosyasını indirin"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (Önerilir) [Dosya imzasını](https://support.torproject.org/en/tbb/how-to-"
-"verify-signature/) doğrulayın."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. İndirme işlemi tamamlandığında `.exe` dosyası üzerine çift tıklayın. "
-"Açılacak kurulum yardımcısındaki adımları izleyin."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "macOS için:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. macOS `.dmg` dosyasını indirin"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr ""
-"4. İndirme işlemi tamamlandığında `.dmg` dosyası üzerine çift tıklayın. "
-"Açılacak kurulum yardımcısındaki adımları izleyin."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "GNU/Linux için:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. GNU/Linux `.tar.xz` dosyasını indirin"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr ""
-"4. İndirme işlemi tamamlandığında `tar -xf [TB archive]` komutunu ya da bir "
-"arşiv yöneticisini kullanarak arşiv dosyasını ayıklayın."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr ""
-"5. GNU/Linux işletim sistemine, görsel arayüz üzerinde kabuk betiklerini "
-"yürütme yetkinizin olduğunu belirtmeniz gerekecek."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "Yeni ayıklanmış Tor Browser klasörünü açın."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr ""
-"`start-tor-browser.desktop` üzerine sağ tıklayıp Özellikler, Properties ya "
-"da Preferences üzerine tıklayın ve dosyanın bir uygulama olarak "
-"çalıştırılabilmesi için izin verin."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr ""
-"Tor browser uygulamasını ilk kez çalıştırmak için simge üzerine çift "
-"tıklayın."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr ""
-"6. Alternatif olarak, uçbirim üzerinden Tor Browser klasörü içinde şu komutu"
-" yürüterek uygulamayı başlatabilirsiniz:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "TOR BROWSER İLE ÇALIŞMAYA BAŞLAMAK"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "Tor Browser ilk kez kullanıldığında neler yapmak gerekir"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr ""
-"Tor Browser uygulaması ilk kez çalıştırıldığında Tor Ağ Ayarları penceresi "
-"görüntülenir."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr ""
-"Bu pencerede doğrudan Tor ağına bağlanma ya da Tor Browser uygulamasını "
-"bağlantınıza göre yapılandırma seçenekleri sunulur."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "## BAĞLANTI KURMAK"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr ""
-"Çoğu durumda \"Bağlan\" seçeneğinin seçilmesi, herhangi bir yapılandırma "
-"gerekmeden Tor ağına bağlanmanızı sağlar."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr ""
-"Tıklandıktan sonra, Tor bağlantısının kurulması bir durum çubuğunda "
-"görüntülenir."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr ""
-"Hızlı bir bağlantınız olduğu halde çubuk bir noktada takılıp kalıyorsa, "
-"yapabileceklerinizi görmek için [Sorun Çözme](/tr/troubleshooting) sayfasına"
-" bakabilirsiniz."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### YAPILANDIRMAK"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr ""
-"Bağlantınızın sansürlendiğini ya da vekil sunucu kullandığını biliyorsanız, "
-"bu seçeneği seçmelisiniz. Tor Browser size bir dizi yapılandırma seçeneği "
-"sunar."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"İlk bölümde, bağlantınız üzerinden Tor ağına erişimin engellenmesi ya da "
-"sansürlenmesi ile ilgili bilgi alınır. Durumun böyle olmadığını "
-"düşünüyorsanız, \"Hayır\" üzerine tıklayın. Bağlantınızın sansürlendiğini "
-"biliyorsanız ya da Tor ağına bağlanmayı deneyip bağlanamadıysanız ve başka "
-"bir çözüm işe yaramadıysa, \"Evet\" üzerine tıklayın. Böylece, bir "
-"Değiştirilebilir Taşıyıcıyı yapılandırabileceğiniz [Engelleri "
-"Aşma](/tr/circumvention) bölümüne yönlendirilirsiniz."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"Sonraki bölümde bağlantınızın bir vekil sunucu kullanıp kullanmadığı "
-"hakkında bilgi alınır. Çoğu durumda, bu gerekli değildir. Sisteminizdeki "
-"diğer tarayıcılar için de aynı ayarlar kullanıldığından \"Evet\" olarak "
-"seçmeniz gerekiyorsa genellikle bunu bilirsiniz. Olabiliyorsa, ağ "
-"yöneticinizden yardım isteyin. Bağlantınız bir vekil sunucu kullanmıyorsa, "
-"\"Devam\" üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "ENGELLEMELERİ AŞMAK"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Tor ağı engelleniyorsa ne yapılabilir"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr ""
-"Tor ağına doğrudan erişim bazen İnternet Hizmeti Sağlayıcınız ya da hükümet "
-"tarafından engellenebilir."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr ""
-"Tor Browser üzerinde bu engellemeleri aşmak için \"Değiştirilebilir "
-"Taşıyıcılar\" olarak adlandırılan bazı araçlar bulunur."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### DEĞİŞTİRİLEBİLİR TAŞIYICI TÜRLERİ"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr ""
-"Şu anda kullanılabilecek üç Değiştirilebilir Taşıyıcı var, ancak daha "
-"fazlası geliştiriliyor."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4, Tor trafiğinin rastgele görünmesini sağlar ve ayrıca ağı izleyenlerin"
-" İnternet taraması ile köprüleri bulmasını önler. obfs4 köprülerinin "
-"engellenme olasılığı, önceki sürüm olan obfs3 köprülerine göre daha azdır."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr ""
-"meek aktarımlarının tümü, Tor kullanıyor gibi görünmek yerine büyük bir web "
-"sitesinde geziliyormuş gibi görünmeyi sağlar. meek-azure, bir Microsoft web "
-"sitesi kullanılıyormuş gibi görünmeyi sağlar."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake, Flashproxy uygulamasının geliştirilmiş bir sürümüdür. Bağlantı "
-"trafiğinizin kendi NAT işaretlemesini kullanan uçtan uca bir iletişim kuralı"
-" olan WebRTC üzerinden aktarılmasını sağlar."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### DEĞİŞTİRİLEBİLİR TAŞIYICILARI KULLANMAK"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr ""
-"Değiştirilebilir Taşıyıcıları kullanmak için, Tor Browser uygulamasını ilk "
-"kez çalıştırdığınızda görüntülenen penceredeki 'Yapılandır' üzerine tıklayın"
-" ve açılan kutudan kullanmak istediğiniz değiştirilebilir taşıyıcıyı seçin."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"Ya da Tor Browser çalışıyorsa, hamburger menüsünden 'Ayarlar' üzerine ve yan"
-" çubuktan 'Tor' üzerine tıklayın. 'Köprüler' bölümünden, 'Bir köprü "
-"kullanılsın' seçeneğini etkinleştirin ve 'Hazır köprülerden seçin' açılan "
-"kutusundan kullanmak istediğiniz Değiştirilebilir Taşıyıcıyı seçin."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr ""
-"Kullanmak istediğiniz Değiştirilebilir Taşıyıcıyı seçtikten sonra "
-"ayarlarınızı kaydetmek için 'Bağlan' üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### HANGİ DEĞİŞTİRİLEBİLİR TAŞIYICIYI KULLANMALIYIM?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr ""
-"Tor Başlatıcı menüsünde görüntülenen Değiştirilebilir Taşıyıcıların her biri"
-" farklı bir yöntemle çalışır ve etkili olup olmayacağı bulunduğunuz duruma "
-"göre değişebilir."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr ""
-"İlk kez engellenmiş bir bağlantıyı aşmaya çalışıyorsanız, obfs4, snowflake "
-"ya da meek-azure gibi farklı Değiştirilebilir Taşıyıcıları denemelisiniz."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr ""
-"Bu seçeneklerin tümünü denediğiniz halde hiçbiri çevrimiçi olmanızı "
-"sağlayamıyor ise, köprü adreslerini el ile yazmanız gerekir."
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr ""
-"Köprülerin ne olduğunu ve köprü bilgilerini nasıl edinebileceğinizi öğrenmek"
-" için [Köprüler](/tr/bridges/) bölümüne bakabilirsiniz."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "KÖPRÜLER"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr ""
-"obfs4 gibi Değiştirilebilir Taşıyıcıların çoğu, \"köprü\" aktarıcılarından "
-"yararlanır."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr ""
-"obfs4 gibi [Değiştirilebilir Taşıyıcıların](/tr/circumvention) çoğu, “köprü”"
-" aktarıcılarından yararlanır."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr ""
-"Gönüllüler tarafından işletilen sıradan Tor aktarıcıları gibi herkese açık "
-"olarak listelenmedikleri için köprüler, ağa müdahale etmek isteyenler "
-"tarafından kolayca belirlenemezler."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr ""
-"Değiştirilebilir Taşıyıcılar ile köprüleri birlikte kullanmak Tor "
-"kullandığınızın gizlenmesine yardımcı olur. Ancak bağlantınız sıradan Tor "
-"aktarıcılarını kullanmaya göre daha yavaş olabilir."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr ""
-"Meek gibi diğer Değiştirilebilir Taşıyıcılar, köprülerden yararlanan farklı "
-"karşı-sansür teknikleri kullanır. Bu aktarımları kullanmak için köprü "
-"adreslerinin eklenmesi gerekmez."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### KÖPRÜ ADRESLERİNİ ALMAK"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr ""
-"Köprü adresleri herkese açık olarak duyurulmadığından, istekte bulunmanız "
-"gerekir. Kullanılabilecek bir kaç seçenek vardır:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr ""
-"* https://bridges.torproject.org/ adresine giderek yönergeleri izleyin"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr ""
-"* Bir Gmail ya da Riseup e-posta adresinden bridges(a)torproject.org adresine "
-"bir e-posta gönderin"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "* Tor Browser içinden köprüleri almak için MOAT kullanın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### MOAT KULLANMAK"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr ""
-"Tor Browser uygulamasını ilk kez çalıştırıyorsanız, Tor Ağ Ayarları "
-"penceresini açmak için 'Yapılandır' üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr ""
-"Daha önce kullandıysanız, hamburger menüsü (ana menü) içindeki 'Ayarlar' "
-"üzerine ve yan çubuktaki 'Tor' üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr ""
-"Tor Ağ Ayarları penceresinde, 'Bulunduğum ülkede Tor ağı engelleniyor' "
-"seçeneğini işaretleyin."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr ""
-"'torproject.org üzerinden bir köprü isteğinde bulun' ve 'Köprü İsteğinde "
-"Bulun...' üzerine tıklayın"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Güvenlik kodunu tamamlayın ve 'Gönder' üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### KÖPRÜ ADRESLERİNİ YAZMAK"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr "Aldığınız köprü adreslerini Tor Başlatıcı içinde belirtmeniz gerekir."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"Tor Browser uygulamasını ilk kez kullanıyorsanız, ekranın sağ üst "
-"köşesindeki \"Yapılandır\" tuşuna basarak Tor Browser Ayarları penceresini "
-"açın. Daha önce kullandıysanız hamburger menüsü (ana menü) içindeki "
-"'Ayarlar' üzerine ve yan çubuktaki 'Tor' üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr ""
-"'Köprüler' bölümünde, 'Bir köprü kullanılsın' seçeneğini işaretleyin ve "
-"'Bildiğim Bir Köprüyü Kullanacağım' seçeneğini seçip körpüleri her bir köprü"
-" adresi ayrı bir satırda olacak şekilde yazın."
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr ""
-"Bağlantı başarısız olursa kullanmaya çalıştığınız köprüler çalışmıyor "
-"olabilir. Lütfen yukarıdaki yöntemlerden birini kullanarak başka köprü "
-"adresleri alın ve yeniden deneyin."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "KİMLİK YÖNETİMİ"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr ""
-"Tor Browser üzerinde sizi kişisel olarak tanımlayan bilgileri nasıl "
-"denetleyebileceğinizi öğrenin"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"Bir web sitesine bağlandığınızda, ziyaretinizle ilgili bilgiler yalnız o "
-"siteyi hazırlayanlar tarafından kaydedilmez. Pek çok web sitesinde, sosyal "
-"ağ \"Beğen\" düğmeleri, analitik izleyiciler ve reklam işaretleri gibi "
-"sayısız üçüncü taraf hizmetleri kullanılır. Bunların tümü, farklı sitelerde "
-"yaptığınız işlemleri birbiriyle ilişkilendirebilir."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"Tor ağını kullandığınızda, ağı izleyen kişi ya da kuruluşlar sizin "
-"konumunuzu ve IP adresinizi tam olarak bilemez. Ancak bu bilgiler olmadan da"
-" farklı alanlarda yaptığınız işlemlere bakarak bunları birbiriyle "
-"ilişkilendirebilir. Bu nedenle Tor Browser, kimliğinize hangi bilgilerin "
-"eklenebileceğini denetlemenizi sağlayan bazı ek özellikler içerir."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### ADRES ÇUBUĞU"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Tor Browser, adres çubuğundaki web sitesi ile olan ilişkinizi web "
-"deneyiminizin merkezine alır. Aynı üçüncü taraf izleme hizmetini kullanan "
-"iki farklı siteye bağlansanız bile Tor Browser, içeriğin iki farklı Tor "
-"devresinden aktarılmasını sağlar. Böylece izleyici hizmet bu bağlantıların "
-"sizin tarayıcınızdan geldiğini bilemez."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"Diğer taraftan, aynı web sitesi adresine yapılan bağlantılar, aynı Tor "
-"devresini kullanır. Yani, tek bir web sitesinin farklı sayfalarında ayrı "
-"sekme ya da pencerelerde herhangi bir işlev kaybı olmadan gezinebilirsiniz."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr ""
-"Geçerli sekme tarafından kullanılan Tor Browser devre şemasını adres "
-"çubuğunda [i] simgesi ile görüntülenen site bilgileri menüsünden "
-"görebilirsiniz."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"Devrede, Koruyucu ya da giriş durağı ilk duraktır ve Tor tarafından otomatik"
-" ve rastgele olarak seçilir. Ancak, devredeki diğer duraklardan farklıdır. "
-"Koruyucu durak, her yeni etki alanı ile değiştirilen diğer duraklardan "
-"farklı olarak, profil oluşturma saldırılarını önlemek için yalnız 2-3 ayda "
-"bir değiştirilir. Koruyucular hakkında ayrıntılı bilgi almak için, "
-"[SSS](https://www.torproject.org/docs/faq#EntryGuards) ve [Destek "
-"Sitesi](https://support.torproject.org/tr/tbb/tbb-2/) bölümlerine "
-"bakabilirsiniz."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### TOR ÜZERİNDEN OTURUM AÇMAK"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr ""
-"Tor Browser, kullanıcılarına web üzerinde tam anonimlik sağlamak için "
-"tasarlanmıştır. Ancak kullanıcı adı, parola ya da diğer kim olduğunuzu "
-"belirleyici bilgiler isteyen web siteleri ile de Tor Browser kullanmanın "
-"mantıklı olduğu durumlar olabilir."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"Normal bir tarayıcı kullanarak bir web sitesinde oturum açtığınızda, IP "
-"adresinizi ve coğrafi konumunuzu bildirmiş olursunuz. Aynı durum genellikle "
-"e-posta gönderirken de geçerlidir. Tor Browser kullanarak sosyal ağ ya da "
-"e-posta hesaplarınızda oturum açarken hangi bilgilerin bildirileceğini "
-"seçebilirsiniz. Erişmek istediğiniz web sitesi ağınızda sansürleniyorsa, Tor"
-" Browser kullanarak oturum açabilirsiniz."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr ""
-"Tor kullanarak bir web sitesinde oturum açarken şu konuları unutmamanız "
-"gerekir:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr ""
-"* Oturum açarken bağlantınızın güvenliğini sağlamak hakkında önemli "
-"bilgileri görmek için [Güvenli Bağlantılar](/tr/secure-connections) bölümüne"
-" bakabilirsiniz."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Tor Browser genellikle bağlantınızı dünyanın tümüyle başka bir yerinden "
-"geliyormuş gibi gösterir. Bankalar ya da e-posta hizmeti sağlayıcıları gibi "
-"bazı web siteleri, bu durumu hesabınızın saldırıya uğradığı ya da başkaları "
-"tarafından ele geçirildiği şeklinde yorumlayarak hesabınızı kilitleyebilir. "
-"Bu durumu çözmenin tek yolu, ilgili sitenin hesap kurtarma için önerdiği "
-"yöntemi izlemek ya da hizmet sağlayıcı ile görüşerek durumu açıklamaktır."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### KİMLİK VE DEVRE DEĞİŞTİRMEK"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr ""
-"Tor Browser üzerinde \"Kimliği yenile\" ve \"Sitenin devresini yenile\" "
-"seçenekleri bulunur. Bu özellikler ana menüde de (hamburger menüsü) bulunur."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### YENİ KİMLİK"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"Bu seçenek, web tarayıcısında yapacağınız işlemlerin daha önce yaptığınız "
-"işlemler ile ilişkilendirilmesini engellemek istediğinizde işe yarar. Bu "
-"seçenek kullanıldığında, açık tüm sekme ve pencereler kapatılır, çerez ve "
-"tarama geçmişi gibi tüm kişisel bilgiler temizlenir ve yapılacak tüm "
-"bağlantılar için yeni Tor devreleri kullanılır. Tor Browser size tüm "
-"işlemlerin ve indirmelerin durdurulacağını bildirir. Bu yüzden \"Kimliği "
-"Yenile\" üzerine tıklamadan önce bunu aklınızda bulundurun."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr ""
-"Bu özelliği kullanmak için Tor Browser araç çubuğundaki 'Yeni Kimlik' "
-"üzerine tıklamanız yeterlidir."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### SİTENİN DEVRESİNİ YENİLE"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"Bu seçenek, kullandığınız [çıkış aktarıcısı](/tr/about/#how-tor-works) "
-"istediğiniz web sitesine bağlanamıyorsa ya da site düzgün yüklenmiyorsa işe "
-"yarar. Seçildiğinde, etkin sekme ya da pencerenin yeni bir Tor devresi "
-"üzerinden yeniden yüklenmesini sağlar. Aynı web sitesinden açılmış diğer "
-"sekme ve pencereler de yeniden yüklendiklerinde bu yeni devreyi kullanır. Bu"
-" seçeneğin kullanılması, herhangi bir kişisel bilgiyi temizlemez, "
-"işlemlerinizi kesintiye uğratmaz ya da açık olan diğer web sitesi "
-"bağlantılarınızı etkilemez."
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr ""
-"Bu seçeneğe adres çubuğunda [i] simgesi ile görüntülenen site bilgileri "
-"menüsünden de erişebilirsiniz."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "ONION HİZMETLERİ"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "Yalnız Tor kullanılarak erişilebilen hizmetler"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr ""
-"Onion hizmetleri (eskiden \"gizli hizmetler\" denilirdi) yalnız Tor ağı "
-"üzerinden erişilebilen hizmetlerdir (web siteleri gibi)."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr ""
-"Onion hizmetleri, web üzerinde erişebileceğiniz gizli olmayan sıradan "
-"hizmetlere göre çeşitli avantajlar sunar:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr ""
-"* Bir Onion hizmetinin konumu ve IP adresi gizlidir. Böylece engellenmeleri "
-"ya da bağlı oldukları ya da hizmet işletmecilerinin kullandığı hizmet "
-"sağlayıcıların belirlenmesi zorlaştırılmış olur."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Tor kullanıcıları ile Onion hizmetleri arasındaki tüm trafik uçtan uca "
-"şifrelenir. Bu nedenle [HTTPS kullanarak bağlanmayı](/tr/secure-connections)"
-" dert etmeniz gerekmez."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* Bir Onion hizmetinin adresi otomatik olarak üretilir. Böylece siteyi "
-"hazırlayanların ayrıca bir etki alanı adı satın alması gerekmez. Böylece "
-".onion adresi kullanıldığında Tor, bağlantının doğru konuma yapıldığından ve"
-" bağlantıya müdahale edilmediğinden emin olur."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### BİR ONION HİZMETİNE NASIL ERİŞİLİR"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"Diğer web siteleri gibi, bir Onion hizmetine bağlanmak için adresini "
-"bilmeniz gerekir. Onion adresi, çoğunlukla rastgele 16 harf ve rakamdan "
-"oluşan (V3 biçiminde 56) ve \".onion\" ile biten bir dizgedir."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"Onion hizmeti kullanan bir web sitesine erişirken, Tor Browser adres "
-"çubuğunda bağlantınızın durumunun güvenli olduğunu ve bir onion hizmetinin "
-"kullanıldığını belirten bir yeşil soğan simgesi görüntülenir. Onion "
-"hizmetine erişirken https kullanılıyorsa, üzerinde kilit olan bir yeşil "
-"soğan simgesi görüntülenir."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### SORUN ÇÖZME"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"İstediğiniz Onion hizmetine erişemiyorsanız, onion adresini doğru "
-"yazdığınızdan emin olun. Küçük bir hata bile Tor Browser tarafından siteye "
-"ulaşılmasını engeller."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr ""
-"Onion hizmetine gene de bağlanamıyorsanız, lütfen daha sonra yeniden "
-"deneyin. Geçici bir bağlantı sorunu olabilir ya da siteyi hazırlayanlar "
-"herhangi bir uyarı yapmadan siteyi çevrimdışı yapmış olabilir."
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-"Ayrıca diğer onion hizmetlerine erişebildiğinizden emin olmak için "
-"[DuckDuckGo Onion Hizmetine](http://3g2upl4pq6kufc4m.onion/) bağlanmayı "
-"deneyebilirsiniz."
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "GÜVENLİ BAĞLANTILAR"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr ""
-"Tor Browser ve HTTPS kullanarak verilerinizi nasıl koruyabileceğinizi "
-"öğrenin"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"Oturum açma parolası gibi kişisel bilgiler şifrelenmemiş olarak İnternet "
-"üzerine gönderilirse, ağı izliyor olabilecek bir kişi ya da kuruluş "
-"tarafından kolayca elde edilebilir. Herhangi bir web sitesinde oturum "
-"açıyorsanız, sitenin bu tür bir izlemeye karşı HTTPS şifreleme hizmeti "
-"sunduğundan emin olmanız gerekir. Bunu adres çubuğundan görebilirsiniz: "
-"Şifrelenmiş bir bağlantı kullanıyorsanız, adresin başında \"http://\" yerine"
-" \"https://\" bulunur."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "GÜVENLİK AYARLARI"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr ""
-"Tor Browser uygulamasının güvenlik ve kullanışlılık için yapılandırması"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr ""
-"Tor Browser tarama verilerinizi varsayılan olarak şifreleyerek güvenliğinizi"
-" sağlar."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr ""
-"Kişisel verilerinize ve anonimliğinize saldırmak için kullanılabilecek bazı "
-"web özelliklerini devre dışı bırakarak güvenliğinizi daha da "
-"artırabilirsiniz."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr ""
-"Bunu kalkan menüsünü kullanarak erişebileceğiniz Tor Browser Güvenlik "
-"Düzeyleri ile yapabilirsiniz."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr ""
-"Tor Browser güvenlik düzeyi ayarını arttırmak bazı web sitelerinin düzgün "
-"çalışmasını engeller. Bu nedenle, güvenlik düzeyini, gerek duyduğunuz "
-"kullanışlılık derecesine göre seçmelisiniz."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### GÜVENLİK AYARLARINA ERİŞMEK"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr ""
-"Güvenlik Düzeyi Ayarı seçeneğine, Tor Browser adres çubuğunun yanındaki "
-"kalkan simgesine tıklayarak erişebilirsiniz."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr ""
-"Güvenlik Düzeyi Ayarlarını görmek ve değiştirmek için kalkan menüsündeki "
-"'Gelişmiş Güvenlik Düzeyi Ayarları' seçeneğine tıklayın."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### GÜVENLİK DÜZEYLERİ"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr ""
-"Tor Browser Güvenlik Düzeyi Ayarı yükseltildiğinde olası saldırılara karşı "
-"koruma sağlamak için belirli tarayıcı özellikleri tamamen ya da kısmen devre"
-" dışı bırakılır."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr ""
-"Bu özellikleri yeniden etkinleştirmek istediğinizde Güvenlik Düzeyi Ayarını "
-"değiştirebilirsiniz."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### Standart"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr ""
-"* Bu güvenlik düzeyinde tüm Tor Browser ve web sitesi özellikleri "
-"kullanılabilir."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### Daha Güvenli"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr ""
-"* Sıklıkla tehlikeli olan web sitesi özellikleri devre dışı bırakılır ve "
-"bazı sitelerin işlevlerinde kayıplar olabilir. "
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* [HTTPS](/tr/secure-connections) kullanmayan sitelerde JavaScript devre "
-"dışı bırakılır. Bazı yazı tipleri ve matematik simgeleri devre dışı "
-"bırakılır. Ses ve görüntü (HTML5 ortamları) tıklanıp oynatılabilir."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### En Güvenli"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr ""
-"* Bu güvenlik düzeyinde yalnız durağan siteler ve temel hizmetler için "
-"gerekli web sitesi özelliklerine izin verilir."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr " Bu değişiklikler görselleri, ortamları ve betikleri etkiler."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr ""
-"* JavaScript varsayılan olarak tüm sitelerde devre dışı bırakılır. Bazı yazı"
-" tipleri ve matematik simgeleri devre dışı bırakılır. Ses ve görüntü (HTML5"
-" ortamları) tıklanıp oynatılabilir."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "GÜNCELLEMEK"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "Tor Browser nasıl güncellenir"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr ""
-"Tor Browser her zaman güncel tutulmalıdır. Uygulamanın eski bir sürümünü "
-"kullanmaya devam ederseniz, kişisel verileriniz gizliliğini ve anonim olarak"
-" kalmanızı tehlikeye atan ciddi güvenlik açıklarına karşı korumasız "
-"kalabilirsiniz."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"Yeni bir Tor Browser sürümünün yayınlandığı size bildirilerek uygulamayı "
-"güncellemeniz istenir. Torbutton simgesinde sarı bir üçgen görüntülenir ve "
-"Tor Browser başlatıldığında bir güncelleme bildirimi görüntülenebilir. "
-"Güncelleme işlemini otomatik ya da el ile yapabilirsiniz."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### TOR BROWSER UYGULAMASINI OTOMATİK OLARAK GÜNCELLEMEK"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr ""
-"Tor Browser güncellemesi olduğu bildirildiğinde, hamburger menüsüne (ana "
-"menü) tıklayıp \"Tor Browser uygulamasını güncellemek için yeniden başlat\" "
-"üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr ""
-"Güncellemenin indirilmesini ve kurulmasını bekleyin. Tor Browser yeniden "
-"başlatıldıktan sonra son sürümü kullanıyor olacaksınız."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### TOR BROWSER UYGULAMASINI EL İLE GÜNCELLEMEK"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr ""
-"Tor Browser uygulamasını güncellemeniz gerektiği bildirildiğinde, web "
-"sitelerindeki gezinmenizi bitirin ve uygulamayı kapatın."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr ""
-"Tor Browser uygulamasının bulunduğu klasörü silerek sisteminizden kaldırın "
-"(ayrıntılı bilgi almak için [Kaldırma](/tr/uninstalling) bölümüne "
-"bakabilirsiniz)."
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"https://www.torproject.org/tr/download/ adresine giderek en son Tor Browser "
-"sürümünün bir kopyasını indirin. Ardından daha önce olduğu gibi kurun."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "SORUNLARI ÇÖZMEK"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Tor Browser çalışmıyorsa ne yapmak gerekir"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr ""
-"Uygulamayı çalıştırdıktan ve ilk kez kullanıyorsanız \"Bağlan\" düğmesine "
-"tıkladıktan kısa bir süre sonra Tor Browser ile web üzerinde gezinmeye "
-"başlayabilmeniz gerekir."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### HIZLI ÇÖZÜMLER"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr ""
-"Tor Browser bağlantısı kurulamıyor ise çözümü kolay olabilir. Şunları "
-"deneyebilirsiniz:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr ""
-"* Bilgisayarınızın sistem saatini denetleyin. Doğru ayarlanmamış ise Tor "
-"bağlantısı kurulamaz."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr ""
-"* Başka bir Tor Browser kopyasının çalışmadığından emin olun. Bundan emin "
-"değilseniz, bilgisayarınızı yeniden başlatın."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr ""
-"* Kurulmuş olan herhangi bir antivirüs programının Tor uygulamasının "
-"çalışmasını engellemediğinden emin olun. Bunu nasıl yapacağınızı "
-"bilmiyorsanız virüsten koruma uygulamanızın belgelerine bakmanız "
-"gerekebilir."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* Güvenlik duvarınızı geçici olarak devre dışı bırakın."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr ""
-"* Tor Browser uygulamasını silin ve yeniden kurun. Güncelleme yapıyorsanız, "
-"sakın önceki Tor Browser dosyalarınızın üzerine yazmayın; bu dosyaların "
-"önceden tamamen silinmiş olduklarından emin olun."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "## BAĞLANTINIZ SANSÜRLENİYOR MU?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"Hala bağlantı kurulamıyorsa , İnternet Hizmeti Sağlayıcınız Tor ağına "
-"yapılan bağlantıları engelliyor olabilir. Bu sorunun olası çözümlerini "
-"öğrenmek için [Engelleri Aşma](/tr/circumvention) bölümüne bakabilirsiniz."
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### BİLİNEN SORUNLAR"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"Tor Browser sürekli geliştirilmekte olduğundan henüz düzeltilmemiş bazı "
-"sorunlar olduğu bilinmektedir. Herhangi bir sorunla karşılaşırsanız lütfen "
-"[Bilinen Sorunlar](/tr/known-issues) bölümünden karşılaştığınız sorunun "
-"buradaki listede olup olmadığına bakın."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "UYGULAMA EKLERİ, EKLENTİLER VE JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr ""
-"Tor Browser üzerinde eklentiler, uygulama ekleri ve JavaScript betikleri "
-"nasıl kullanılır?"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### FLASH PLAYER"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"Vimeo gibi görüntü web siteleri, içeriği oynatmak için Flash Player "
-"eklentisini kullanır. Maalesef, bu uygulama bağımsız olarak çalıştığından "
-"Tor Browser vekil sunucu ayarlarına uyumluluğu kolayca sağlanamaz. Gerçek "
-"konumunuzu ve IP adresinizi web sitesini hazırlayanlara ya da dışarıda "
-"bağlantınızı izleyen bir hizmete bildirebilir. Bu nedenle Flash, Tor Browser"
-" üzerinde varsayılan olarak devre dışı bırakılmıştır ve etkinleştirilmesi "
-"önerilmez."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"Bazı görüntü web siteleri (YouTube gibi), Flash kullanmayan alternatif "
-"içerik oynatma yöntemleri sunar. Bu yöntemler Tor Browser ile uyumlu "
-"olabilir."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JAVASCRIPT"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript, web sitelerinin görüntü, animasyon, ses ve işlem durum "
-"ilerlemesi gibi etkileşimli ögeleri sunmak için kullandığı bir programlama "
-"dilidir. Maalesef, JavaScript tarayıcı güvenliğine yönelik saldırılar "
-"yapılmasına ve kimliğinizin açığa çıkmasına neden olabilir."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"Tor Browser üzerinde NoScript adında bir eklenti bulunur. Erişmek için "
-"hambıuger menüsünden (ana menü) içindeki 'Ayarlar' bölümüne gidin, "
-"'Özelleştir' üzerine tıklayın ve \"S\" simgesini sürükleyip pencerenin sağ "
-"üst köşesine bırakın. NoScript her bir web sayfasındaki JavaScript "
-"betiklerinin (ve diğer betiklerin) kullanımını kontrol altında tutmanızı ya "
-"da tamamen engellemenizi sağlar."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"Web sitelerinde gezinirken yüksek derecede güvenlik isteyen kullanıcılar, "
-"Tor Browser üzerindeki [Güvenlik Düzeyi Ayarını](../security-settings/) "
-"\"Daha Güvenli\" (HTTPS olmayan web siteleri için JavaScript devre dışı) ya "
-"da \"En Güvenli\" (tüm web siteleri için JavaScript devre dışı) olarak "
-"seçmelidir. Bununla birlikte, JavaScript devre dışı bırakıldığında birçok "
-"web sitesi düzgün çalışmayabilir. Bu nedenle Tor Browser varsayılan olarak "
-"\"Standart\" güvenlik düzeyinde tüm web sitelerinin betikleri çalıştırmasına"
-" izin verir."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### TARAYICI EKLENTİLERİ"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr ""
-"Tor Browser Firefox tabanlı olduğundan Firefox ile uyumlu tüm eklenti ve "
-"temalar Tor Browser üzerine de kurulabilir."
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"Bununla birlikte, varsayılan olarak yalnız Tor Browser ile kullanılabileceği"
-" denenmiş eklentiler kurulmuştur. Diğer tarayıcı eklentilerini kurmak, Tor "
-"Browser uygulamasının işlerliğini bozabilir ya da gizlilik ve güvenliğinizi "
-"etkileyecek daha ciddi sorunlara yol açabilir. Diğer eklentilerin kurulması "
-"kesinlikle önerilmez ve Tor Project böyle yapılandırmalar için destek "
-"vermez."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "KALDIRMAK"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "Tor Browser bilgisayarınızdan nasıl kaldırılır"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "Tor Browser sisteminizden kolayca kaldırılabilir:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "Windows üzerinde:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr ""
-"* Tor Browser klasörünü ya da uygulamasını bulun. Varsayılan olarak Masaüstü"
-" klasörü kullanılır."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* Tor Browser klasörünü ya da uygulamasını silin."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* Çöp kutunuzu boşaltın."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "macOS üzerinde:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr ""
-"* Tor Browser klasörünü ya da uygulamasını bulun. Varsayılan olarak "
-"Applications klasörü kullanılır."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* Tor Browser uygulamasını çöp kutusuna atın."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* `~/Library/Application Support/` klasörüne gidin."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr ""
-"* yeni macOS sürümlerinde Library klasörünün gizli olduğunu unutmayın. Bu "
-"klasörü açmak için Finder içinde \"Git\" menüsünde \"Klasöre Git...\" "
-"seçeneğini kullanın."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr ""
-"* Açılan pencereye \"~/Library/Application Support/\" yazıp Git üzerine "
-"tıklayın."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr "* TorBrowser-Data klasörünü bulup çöp kutusuna atın."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"Tor Browser uygulamasını varsayılan konuma kurmadıysanız (Applications "
-"klasörü), TorBrowser-Data klasörü `~/Library/Application Support/` "
-"klasöründe değil Tor Browser kurulum klasöründe bulunur."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "Linux üzerinde:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* Tor Browser klasörünü bulun. Linux üzerinde varsayılan konum yoktur, ancak"
-" kullandığınız Tor Browser İngilizce ise \"tor-browser_en-US\" adında bir "
-"klasör olmalıdır."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* Tor Browser klasörünü silin."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr ""
-"Kaldırma işlemi için işletim sisteminizde bulunan standart \"Uygulama "
-"Kaldırma\" aracının kullanılmadığını unutmayın."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "BİLİNEN SORUNLAR"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr ""
-"* Tor uygulamasının çalışabilmesi için bilgisayarınızın saat ve saat dilimi "
-"ayarları doğru olmalıdır."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr ""
-"* Tor ile sorun çıkarabileceğinden şu güvenlik duvarı ayarlarının geçici "
-"olarak devre dışı bırakılması gerekebilir:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* Kaspersky Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus for Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr ""
-"* Adobe Flash gerektiren görüntüler kullanılamaz. Güvenlik nedeniyle Flash "
-"devre dışı bırakılmıştır. "
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr "* Bir vekil sunucu ayarlanmışsa Tor köprüleri kullanamaz."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr ""
-"* Tor Browser paketinin tarihi 1 Ocak 2000 00:00: 00 UTC şeklindedir. "
-"Böylece her bir yazılım yapımının tam olarak yeniden üretilebilir olduğundan"
-" emin olunabilir."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* Ubuntu üzerinde Tor Browser çalıştırmak için kullanıcıların bir kabuk "
-"komut dosyası çalıştırmaları gerekir. \"Dosyalar\" (Unity dosya yöneticisi) "
-"uygulamasını açıp, Ayarlar → Davranış Sekmesi → \"Çalıştırılabilir metin "
-"dosyalarını açıldıklarında Çalıştır\" seçeneğini \"Her zaman sorulsun\" "
-"olarak ayarlayın, ardından Tamam üzerine tıklayın."
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr ""
-"* Ayrıca Tor Browser, komut satırından Tor Browser klasörünün içindeki şu "
-"komut çalıştırılarak başlatılabilir:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* Özellikle BitTorrent [Tor üzerinde anonim "
-"değildir](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "TOR BROWSER UYGULAMASINI TAŞINABİLİR YAPMAK"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "Taşınabilir bir ortam üzerine Tor Browser nasıl kurulur"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr ""
-"İsteğinize göre, Tor Browser arşiv dosyasını doğrudan USB disk ya da SD kart"
-" gibi bir ortam üzerine ayıklayarak taşınabilir yapabilirsiniz."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr ""
-"Gerektiğinde Tor Browser uygulamasının güncellenebilmesi için yazılabilir "
-"bir ortam kullanmanız önerilir. "
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr ""
-"1. Taşınabilir ortamı bilgisayara takın ve biçimlendirin. Her dosya sistemi "
-"kullanılabilir."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr ""
-"2. Tor Browser [indirme sayfasına](https://torproject.org/tr/download) "
-"gidin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr ""
-"3. Windows `.exe` dosyasını indirin ve doğrudan ortam üzerine kaydedin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4. (Önerilir) [Dosya imzasını](https://support.torproject.org/en/tbb/how-to-"
-"verify-signature/) doğrulayın."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr ""
-"5. İndirme işlemi tamamlandığında `.exe` dosyası üzerine çift tıklayın. "
-"Açılacak kurulum yardımcısındaki adımları izleyin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr ""
-"6. Tor Browser uygulamasını nereye kurmak istediğiniz sorulduğunda, "
-"taşınabilir ortamınızı seçin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr ""
-"1. Taşınabilir ortamı bilgisayara takın ve biçimlendirin. macOS Gelişmiş "
-"(Extended, Journaled) dosya biçimini *kullanmalısınız*."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr "3. macOS `.dmg` dosyasını indirin ve doğrudan ortam üzerine kaydedin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr ""
-"5. İndirme işlemi tamamlandığında `.dmg` dosyası üzerine çift tıklayın. "
-"Açılacak kurulum yardımcısındaki adımları izleyin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr ""
-"3. Linux `.tar.xz` dosyasını indirin ve doğrudan ortam üzerine kaydedin."
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr ""
-"5. İndirme işlemi tamamlandığında arşiv dosyasını ortam üzerine ayıklayın."
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "Afişi kaldır"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "Çevrimiçi izleme, gözetim ve sansür uygulamaları yaygındır."
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "TOR KULLANIN İNTERNETİ GERİ ALIN"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "BAĞIŞ YAPIN"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "Bugün yaptığınız her bağış kadar Mozilla da bağış yapacak."
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "Tor Browser İndir"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr ""
-"İzleme, gözetleme ya da engelleme olmadan kişisel gizliliğinizi "
-"koruyabileceğiniz gerçek taramayı deneyimlemek için Tor Browser uygulamasını"
-" indirin."
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "Misyonumuz:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"Özgür ve açık kaynaklı anonimlik ve kişisel gizlilik teknolojileri "
-"geliştirerek insan hakları ve özgürlükleri geliştirmek, bu teknolojilere "
-"kısıtlamasız olarak erişilebilmesini sağlamak ile bilimsel ve yaygın olarak "
-"anlaşılmasını sağlamak."
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "Bağış Yapın"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "Bağış Yapın"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "Duyurularımıza Abone Olun"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr ""
-"Tor Projesi ile ilgili güncelleme ve bilgileri aylık olarak alabilirsiniz:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "Kayıt olun"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr ""
-"Üçüncü tarafların kullanabileceği patent, telif hakkı ve ilkeleri şurada "
-"bulabilirsiniz %(link_to_faq)s"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "Menü"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "Arama"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr ""
-"Tor Browser ve HTTPS şifrelemesinin bulunduğu ve bulunmadığı durumlarda sizi"
-" izleyebilecek kişi ya da kuruluşların elde edebileceği bilgileri burada "
-"görebilirsiniz:"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr ""
-"Tor kullanırken ağı izleyenlerin elde edebileceği bilgileri görmek için "
-"\"Tor\" düğmesine tıklayın. Tor açık olduğunda düğme yeşil renkte olur."
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"HTTPS kullanırken ağı izleyenlerin elde edebileceği bilgileri görmek için "
-"\"HTTPS\" düğmesine tıklayın. HTTPS açık olduğunda düğme yeşil renkte olur."
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr ""
-"Her iki düğmenin rengi yeşil olduğunda, bu iki araç kullanılırken ağı "
-"izleyenlerin elde edebileceği bilgileri görürsünüz."
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr ""
-"Her iki düğmenin rengi gri olduğunda, bu iki araç kullanılmazken ağı "
-"izleyenlerin elde edebileceği bilgileri görürsünüz."
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "ELDE EDİLEBİLECEK VERİLER"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "Ziyaret edilen site."
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "kullanıcı / parola"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "Kimlik doğrulaması için kullanılan kullanıcı adı ve parola."
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "veriler"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "İletilen veriler."
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "konum"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr ""
-"Web sitesini ziyaret eden bilgisayarın ağ konumu (herkese açık IP adresi)."
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "Tor kullanılıp kullanılmadığı."
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr "Kendinizi ağın izlenmesinden ve gözetlenmekten koruyun. Sansürü aşın."
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor Projesi | Tor Browser Rehberi"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "Başlıklar"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "Bu sayfaya katkıda bulunanlar:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "Bu sayfayı düzenleyin"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "Öneride Bulunun"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "Kalıcı bağlantı"
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
deleted file mode 100644
index f37d63b17d..0000000000
--- a/contents+zh-CN.po
+++ /dev/null
@@ -1,2263 +0,0 @@
-# Translators:
-# ヨイツの賢狼ホロ, 2019
-# MD Rights <psychi2009(a)gmail.com>, 2019
-# erinm, 2019
-# shenzhui007 <12231252(a)bjtu.edu.cn>, 2019
-# YFdyh000 <yfdyh000(a)gmail.com>, 2019
-# khi, 2020
-# Cloud P <heige.pcloud(a)outlook.com>, 2020
-# Emma Peel, 2020
-# ff98sha, 2020
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
-"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: ff98sha, 2020\n"
-"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: https//tb-manual.torproject.org/ (content/contents+en.lrshowcase.title)
-msgid "Tor Browser User Manual"
-msgstr "Tor 浏览器用户手册"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About"
-msgstr "关于"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Documentation"
-msgstr "文档"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Press"
-msgstr "新闻"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Blog"
-msgstr "博客"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Newsletter"
-msgstr "新闻通讯"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Support"
-msgstr "支持"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Community"
-msgstr "社区"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Contact"
-msgstr "联系方式"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Jobs"
-msgstr "工作"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "About Tor Browser"
-msgstr "关于 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Downloading"
-msgstr "下载"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "初次运行 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Pluggable transports"
-msgstr "可插拔传输"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Circumvention"
-msgstr "规避"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Bridges"
-msgstr "网桥"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "管理身份"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Onion Services"
-msgstr "洋葱服务"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Secure Connections"
-msgstr "安全连接"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Security Settings"
-msgstr "安全设置"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Updating"
-msgstr "更新"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Plugins"
-msgstr "插件"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Troubleshooting"
-msgstr "故障排除"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Uninstalling"
-msgstr "卸载"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.description)
-msgid "Known issues"
-msgstr "已知问题"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Becoming a Tor Translator"
-msgstr "成为 Tor 翻译者"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "可移植 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/menu/
-#: (content/menu/contents+en.lrtopic.body)
-msgid "Installation"
-msgstr "安装"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.title)
-msgid "ABOUT TOR BROWSER"
-msgstr "关于 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.description)
-msgid "Learn what Tor Browser can do to protect your privacy and anonymity"
-msgstr "了解 Tor 浏览器如何保护您的隐私和匿名性"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser uses the Tor network to protect your privacy and anonymity. "
-"Using the Tor network has two main properties:"
-msgstr "Tor 浏览器使用 Tor 网络保护您的隐私和匿名性。使用 Tor 网络有两个主要好处:"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* Your internet service provider, and anyone watching your connection "
-"locally, will not be able to track your internet activity, including the "
-"names and addresses of the websites you visit."
-msgstr "* 您的互联网服务提供商和任何本地的监视者都将无法查看您的连接、跟踪您的网络活动,包括您所访问网站的名称和地址。"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"* The operators of the websites and services that you use, and anyone "
-"watching them, will see a connection coming from the Tor network instead of "
-"your real Internet (IP) address, and will not know who you are unless you "
-"explicitly identify yourself."
-msgstr ""
-"* 您使用的网站和服务的运营商以及任何监视它们的人都将看到连接来自 Tor 网络而不是您的互联网IP地址,并且不知道您是谁,除非您明确标识自己。"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"In addition, Tor Browser is designed to prevent websites from "
-"“fingerprinting” or identifying you based on your browser configuration."
-msgstr "此外,Tor 浏览器的设计包括防止网站根据您的浏览器配置而收集“指纹”或识别您。"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser does not keep any browsing history. Cookies are only"
-" valid for a single session (until Tor Browser is exited or a [New Identity"
-"](/managing-identities/#new-identity) is requested)."
-msgstr ""
-"默认情况下,Tor 浏览器不保留任何浏览历史。Cookies 只在单一会话标签内有效(直到 Tor 浏览器退出或请求了一个[新的身份](/zh-CN"
-"/managing-identities/#new-identity)为止)。"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid "### HOW TOR WORKS"
-msgstr "### Tor 如何工作"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"Tor is a network of virtual tunnels that allows you to improve your privacy "
-"and security on the Internet. Tor works by sending your traffic through "
-"three random servers (also known as *relays*) in the Tor network. The last "
-"relay in the circuit (the “exit relay”) then sends the traffic out onto the "
-"public Internet."
-msgstr ""
-"Tor 是一个由虚拟通道组成的网络,使您可以提高自己在互联网上的隐私和安全性。Tor 会将您的流量通过 Tor "
-"网络内的三个随机的服务器(也称*节点*)发送。链路中的最后一个中继(即“出口节点”)将流量发送到公共互联网。"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-msgstr ""
-"<img class=\"\" src=\"../static/images/how-tor-works.png\" alt=\"How Tor "
-"Browser works\">"
-
-#: https//tb-manual.torproject.org/about/
-#: (content/about/contents+en.lrtopic.body)
-msgid ""
-"The image above illustrates a user browsing to different websites over Tor. "
-"The green middle computers represent relays in the Tor network, while the "
-"three keys represent the layers of encryption between the user and each "
-"relay."
-msgstr ""
-"上图展示了用户如何通过 Tor 网络来浏览不同的网站。在中间的绿色计算机表示 Tor 网络中的中继服务器;三把钥匙表示用户与每个中继之间的加密层。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.title)
-msgid "DOWNLOADING"
-msgstr "正在下载"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.description)
-msgid "How to download Tor Browser"
-msgstr "如何下载 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"The safest and simplest way to download Tor Browser is from the official Tor"
-" Project website at https://www.torproject.org/download."
-msgstr ""
-"要获取 Tor 浏览器,最安全且简便的方式就是从 Tor 项目官网 https://www.torproject.org/download 下载。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Your connection to the site will be secured using [HTTPS](/secure-"
-"connections), which makes it much harder for somebody to tamper with."
-msgstr ""
-"要获取 Tor 浏览器,最安全且简便的方式就是从 Tor 项目官网 https://www.torproject.org 下载。访问该网站的网络连接受到"
-" [HTTPS](/zh-CN/secure-connections) 机制保护,使其更难被篡改。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"However, there may be times when you cannot access the Tor Project website: "
-"for example, it could be blocked on your network."
-msgstr "然而,某些情况下您可能无法成功访问 Tor 项目的官方网站:例如您所在的网络会屏蔽该网站。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If this happens, you can use one of the alternative download methods listed "
-"below."
-msgstr "如果您遭遇到类似情况的话,可以利用下列几种不同的方式获取 Tor 浏览器。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### MIRRORS"
-msgstr "### 镜像"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"If you're unable to download Tor Browser from the official Tor Project "
-"website, you can instead try downloading it from one of our official "
-"mirrors, either through [EFF](https://tor.eff.org), [Calyx "
-"Institute](https://tor.calyxinstitute.org) or [CCC](https://tor.ccc.de)."
-msgstr ""
-"如果您无法从Tor 项目的官方网站下载Tor 浏览器,您可以使用从我们的其中一个官方镜像中安装,可以通过 "
-"[EFF](https://tor.eff.org),[Calyx "
-"Institute](https://tor.calyxinstitute.org)或[CCC](https://tor.ccc.de)下载。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### GETTOR"
-msgstr "### GetTor"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor is a service that automatically responds to messages with links to "
-"the latest version of Tor Browser, hosted at a variety of locations, such as"
-" Dropbox, Google Drive and GitHub."
-msgstr ""
-"GetTor 是一项通过不同方式自动回复最新版 Tor 浏览器下载链接的服务。这些链接由不同处所托管,例如 Dropbox 、Google Drive "
-"和 GitHub."
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA EMAIL:"
-msgstr "### 通过邮件使用GetTor:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"Send an email to gettor(a)torproject.org, and in the body of the message "
-"simply write “windows”, “osx”, or “linux”, (without quotation marks) "
-"depending on your operating system."
-msgstr ""
-"发送一封电子邮件至 gettor(a)torproject.org.xn--2rq213bgxb18m74h3yf Tor "
-"浏览器的电脑系统,在邮件内容填写“windows”、“osx”或“linux”来指定平台版本(不含引号)。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"GetTor will respond with an email containing links from which you can "
-"download the Tor Browser package, the cryptographic signature (needed for "
-"verifying the download), the fingerprint of the key used to make the "
-"signature, and the package’s checksum. You may be offered a choice of "
-"“32-bit” or “64-bit” software: this depends on the model of the computer you"
-" are using."
-msgstr ""
-"GetTor 将会自动回复一封电子邮件给您,信中会带有 Tor "
-"浏览器的下载链接、数字签名(用于确认所下载之文件其来源可信)、数字签名所用之密钥特征指纹码、所下载文件之校验和。另外,您亦可以依照您所使用的电脑系统架构,选择要下载"
-" 32 位或是 64 位的版本。"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid "### TO USE GETTOR VIA JABBER/XMPP (JITSI, COYIM, ETC.):"
-msgstr "### 通过 Jabber/XMPP (JITSI, COYIM等)使用GetTor:"
-
-#: https//tb-manual.torproject.org/downloading/
-#: (content/downloading/contents+en.lrtopic.body)
-msgid ""
-"To get links for downloading Tor Browser in Chinese for Linux, send a "
-"message to gettor(a)torproject.org with the words \"linux zh\" in it."
-msgstr ""
-"若要获取可于 Linux 平台上使用的中文版 Tor 浏览器下载链接,可以将“linux zh”字串写在电子邮件里并发送到 "
-"gettor(a)torproject.org."
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.title)
-msgid "INSTALLATION"
-msgstr "安装"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.description)
-msgid "Installing Tor Browser"
-msgstr "正在安装 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For Windows:"
-msgstr "Windows:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"1. Navigate to the Tor Browser [download "
-"page](https://www.torproject.org/download)."
-msgstr "1. 跳转至 Tor 浏览器的[下载页](https://www.torproject.org/download)。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the Windows `.exe` file"
-msgstr "2. 下载 Windows 中的“.exe”可执行文件。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"3. (Recommended) Verify the [file's "
-"signature](https://support.torproject.org/en/tbb/how-to-verify-signature/)."
-msgstr ""
-"3. (推荐)验证[文件的签名](https://support.torproject.org/en/tbb/how-to-verify-"
-"signature/)。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.exe` file. Complete the"
-" installation wizard process."
-msgstr "4. 当下载完成后,双击“.exe”文件。完成安装向导。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For macOS:"
-msgstr "对于 macOS:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the macOS `.dmg` file"
-msgstr "2. 下载 macOS 的“.dmg”文件。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, double click the `.dmg` file. Complete the"
-" installation wizard process."
-msgstr "4. 当下载完成后,双击“.dmg”文件。完成安装向导。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "For GNU/Linux:"
-msgstr "对于 GNU/Linux:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "2. Download the GNU/Linux `.tar.xz` file"
-msgstr "2. 下载 GNU/Linux 的“.tar.xz”文件"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"4. When the download is complete, extract the archive with the command `tar "
-"-xf [TB archive]` or by using an archive manager."
-msgstr "4. 当下载完成后,使用命令“tar -xf[TB archive]”解压文件,或使用档案管理器。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"5. You'll need to tell your GNU/Linux that you want the ability to execute "
-"shell scripts from the graphical interface."
-msgstr "5. 您将需要告诉您的 NU/Linux 您想要从图形界面允许 shell 脚本。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Navigate to the newly extracted Tor Browser directory."
-msgstr "导航至新解压出的 Tor 浏览器的目录。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"Right click on `start-tor-browser.desktop`, open Properties or Preferences "
-"and change the permission to allow executing file as program."
-msgstr "右击 `start-tor-browser.desktop`,打开属性或优先级并更改许可以允许程序解压该文件。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "Double-click the icon to start up Tor Browser for the first time."
-msgstr "双击图标来第一次运行 Tor 浏览器。"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid ""
-"6. Alternatively, from inside the Tor Browser directory, you can also start "
-"from the command line by running:"
-msgstr "6.或者,也可以从 Tor 浏览器的目录中,通过运行以下命令从命令行启动:"
-
-#: https//tb-manual.torproject.org/installation/
-#: (content/installation/contents+en.lrtopic.body)
-msgid "`./start-tor-browser`"
-msgstr "`./start-tor-browser`"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.title)
-msgid "RUNNING TOR BROWSER FOR THE FIRST TIME"
-msgstr "第一次运行 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.description)
-msgid "Learn how to use Tor Browser for the first time"
-msgstr "了解如何初次使用 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"When you run Tor Browser for the first time, you will see the Tor Network "
-"Settings window."
-msgstr "首次运行 Tor 浏览器时,您将看到 Tor 网络设置窗口。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"This offers you the option to connect directly to the Tor network, or to "
-"configure Tor Browser for your connection."
-msgstr "这向您提供直接连接至 Tor 网络,或为您的连接配置 Tor 浏览器的选项。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONNECT"
-msgstr "### 连接"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
-"network without any further configuration."
-msgstr "在大多数情况下,选择“连接”将允许您无需其他配置直接连接至 Tor 网络。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"Once clicked, a status bar will appear, showing Tor’s connection progress."
-msgstr "一当点击,一个状态栏会显示,展示 Tor 的连接状态。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
-"help solving the problem."
-msgstr "如果您的连接速度相对较快,但该状态栏似乎在某个时候卡住了,请参阅[故障排除](/troubleshooting)页面以帮助解决问题。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "### CONFIGURE"
-msgstr "### 配置"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr "如果您使用的网络有被过滤阻挡,或是您有使用代理服务器,那您就必须要选择此项目,Tor 浏览器将会引导您进行一连串的相关设置进程。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"第一个页面询问 Tor 网络在当前环境里是否被封锁或审查。如果你觉得并没有这样,选择“不是”。如果你知道你的 Tor "
-"连接是会被审查的,或者你已经尝试直连 Tor 并且失败了且其他办法都不管用,那么选择“是”。接下来将转入[绕过审查](/zh-"
-"CN/circumvention)页面以配置一个可插拔传输。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
-msgstr ""
-"在下一个画面中,您必须要回答您的网络连接是否有透过代理服务器来连上网络,通常您应该很清楚自己是否有使用代理服务器,因为这部分的设置在您电脑中的每个网络浏览器里都会一样。若您不确定的话,可以询问您的网络管理员,若您确定无使用代理服务器的话,请点击“继续”。"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-
-#: https//tb-manual.torproject.org/running-tor-browser/
-#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.title)
-msgid "CIRCUMVENTION"
-msgstr "规避审查"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.description)
-msgid "What to do if the Tor network is blocked"
-msgstr "Tor 网络被拦截该怎么做"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Direct access to the Tor network may sometimes be blocked by your Internet "
-"Service Provider or by a government."
-msgstr "您的互联网服务提供商或政府有时可能会阻止直接访问 Tor 网络。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes some circumvention tools for getting around these "
-"blocks. These tools are called “pluggable transports”."
-msgstr "Tor 浏览器包括一些规避工具,用于解决这些问题。 这些工具称为“可插拔传输”。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### TYPES OF PLUGGABLE TRANSPORT"
-msgstr "### 可插拔传输类型"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Currently there are three pluggable transports available, but more are being"
-" developed."
-msgstr "目前您有三种可插拔传输器可用,但我们正在开发更多。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<table class=\"table table-striped\">"
-msgstr "<table class=\"table table-striped\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tbody>"
-msgstr "<tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"odd\">"
-msgstr "<tr class=\"odd\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<td>"
-msgstr "<td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "obfs4"
-msgstr "obfs4"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</td>"
-msgstr "</td>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"obfs4 makes Tor traffic look random, and also prevents censors from finding "
-"bridges by Internet scanning. obfs4 bridges are less likely to be blocked "
-"than its predecessor, obfs3 bridges."
-msgstr ""
-"obfs4 使 Tor 的流量看起来是随机的,并且还防止检查程序通过互联网扫描找到网桥。 与之前的 obfs3 网桥相比,obfs4 "
-"网桥被阻塞的可能性较小。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tr>"
-msgstr "</tr>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "meek"
-msgstr "meek"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr "meek 方式使您看起来像在浏览主要网站,而不是使用 Tor。 meek-azure 使您看起来像在使用 Microsoft 网站。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "<tr class=\"even\">"
-msgstr "<tr class=\"even\">"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "Snowflake"
-msgstr "Snowflake"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Snowflake is an improvement upon Flashproxy. It sends your traffic through "
-"WebRTC, a peer-to-peer protocol with built-in NAT punching."
-msgstr ""
-"Snowflake是对Flashproxy的改进。 "
-"它通过WebRTC发送您的流量,WebRTC是一种具有内置网络地址转换(NAT)穿透的对等(P2P)协议。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</tbody>"
-msgstr "</tbody>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "</table>"
-msgstr "</table>"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### USING PLUGGABLE TRANSPORTS"
-msgstr "### 使用可插拔传输"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr "要使用可插拔传输,请在首次启动 Tor 浏览器时单击“配置”。 在出现的窗口中,从下拉菜单中选择您要使用的任何可插拔传输器。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
-msgstr ""
-"或者,如果您正在运行 Tor 浏览器,请在汉堡菜单中单击“首选项”,然后在侧栏中单击“Tor”。 "
-"在“网桥”部分中,选中“使用网桥”,然后从下拉菜单“选择内置网桥”中选择您要使用的可插拔传输工具。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr "选择了要使用的可插拔传输器后,点击“连接”以保存您的设置。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid "### WHICH TRANSPORT SHOULD I USE?"
-msgstr "### 我该使用哪种传输方式?"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Each of the transports listed in Tor Launcher’s menu works in a different "
-"way, and their effectiveness depends on your individual circumstances."
-msgstr "Tor 启动器的菜单中列出的每种传输方式都以不同的方式工作,其有效性取决于您的具体情况。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr "如果你是尝试第一次绕过一个被阻断的连接,你应该尝试一下这些不同的传输:obfs4、snowflake,和 meek-azure。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr "如果你尝试了所有的选项都不能让你连接上去,那你需要手动输入网桥地址。"
-
-#: https//tb-manual.torproject.org/circumvention/
-#: (content/circumvention/contents+en.lrtopic.body)
-msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr "请阅读[网桥](/zh-CN/bridges)部分,学习认识网桥和如何获取它们。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.title)
-msgid "BRIDGES"
-msgstr "网桥"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.description)
-msgid ""
-"Most Pluggable Transports, such as obfs4, rely on the use of “bridge” "
-"relays."
-msgstr "大多数可插拔传输,如 obfs4,依赖于使用“网桥”中继。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Most [Pluggable Transports](/circumvention), such as obfs4, rely on the use "
-"of “bridge” relays."
-msgstr "大多数[可插拔传输](/circumvention),比如 obfs4,依赖于“网桥”中继。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Like ordinary Tor relays, bridges are run by volunteers; unlike ordinary "
-"relays, however, they are not listed publicly, so an adversary cannot "
-"identify them easily."
-msgstr "如同普通的 Tor 中继,网桥由志愿者经营;然而,与普通中继不同,它们并未公开列出,因此对手无法轻易识别它们。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Using bridges in combination with pluggable transports helps to disguise the"
-" fact that you are using Tor, but may slow down the connection compared to "
-"using ordinary Tor relays."
-msgstr "结合使用网桥和可插拔传输器有助于掩盖您正在使用 Tor 的事实,但与使用普通 Tor 中继相比,可能会减慢连接速度。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Other pluggable transports, like meek, use different anti-censorship "
-"techniques that do not rely on bridges. You do not need to obtain bridge "
-"addresses in order to use these transports."
-msgstr "其他可插拔传输层(例如 meek)使用不同的抗审查技术,不依赖于网桥。您不需要为了使用这些传输而获取网桥地址。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### GETTING BRIDGE ADDRESSES"
-msgstr "### 获取网桥地址"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Because bridge addresses are not public, you will need to request them "
-"yourself. You have a few options:"
-msgstr "因为网桥地址非公开,您需要自行请求。您有两个选项:"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"* Visit https://bridges.torproject.org/ and follow the instructions, or"
-msgstr "* 访问 https://bridges.torproject.org/ 并按照流程操作,或者"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Email bridges(a)torproject.org from a Gmail, or Riseup email address"
-msgstr "* 使用 Gmail 或 Riseup 的邮箱服务发送电子邮件至 bridges(a)torproject.org ,或者"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "* Use MOAT to fetch bridges from within Tor Browser."
-msgstr "*使用 MOAT 从 Tor 浏览器中获取网桥。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### USING MOAT"
-msgstr "### 使用MOAT"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr "当您首次启动 Tor 浏览器时,点击“配置”来打开洋葱路由网络的设置窗口。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr "否则,请在菜单中单击“首选项”,然后在侧栏中单击“Tor”。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr "在洋葱网络设置窗口中,选择“Tor 在我的国家访问受限”。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr "然后选择“从 torproject.org 申请一个网桥”并点击“申请网桥...”"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "完成验证码并点击“提交”。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid "### ENTERING BRIDGE ADDRESSES"
-msgstr "### 输入网桥地址"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/tor-launcher-custom-bridges.png\">"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"Once you have obtained some bridge addresses, you will need to enter them "
-"into Tor Launcher."
-msgstr "在您获得一些网桥地址后,您需要将它们输入到 Tor 启动器中。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
-msgstr ""
-"如果您是第一次启动 Tor 浏览器,请单击“配置”以打开 Tor 网络设置窗口。 "
-"否则,请在主菜单中单击“首选项”,然后在侧栏中单击“Tor”以访问这些选项。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr "在“网桥”部分中,选中“使用网桥”,然后选择“提供我知道的网桥”,然后在单独的行中输入每个网桥地址。"
-
-#: https//tb-manual.torproject.org/bridges/
-#: (content/bridges/contents+en.lrtopic.body)
-msgid ""
-"If the connection fails, the bridges you received may be down. Please use "
-"one of the above methods to obtain more bridge addresses, and try again."
-msgstr "如果连接失败的话,可能是因为您所指定的网桥目前并非正常运作中,请使用上面所提的方法获取更多的网桥地址后,再行尝试。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.title)
-msgid "MANAGING IDENTITIES"
-msgstr "管理身份"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.description)
-msgid "Learn how to control personally-identifying information in Tor Browser"
-msgstr "了解如何控制 Tor 浏览器中的个人身份信息"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you connect to a website, it is not only the operators of that website "
-"who can record information about your visit. Most websites now use numerous "
-"third-party services, including social networking “Like” buttons, analytics "
-"trackers, and advertising beacons, all of which can link your activity "
-"across different sites."
-msgstr ""
-"当您连上某个网站时,不只是该网站的管理员可获取有关于您的相关信息,现今许多网站都会使用像是脸书的“赞”功能按钮、访客追踪分析、广告推播服务等各种第三方网络服务,此类的功能可以将您在不同网站上的活动纪录串连组合起来。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Using the Tor network stops observers from being able to discover your exact"
-" location and IP address, but even without this information they might be "
-"able to link different areas of your activity together. For this reason, Tor"
-" Browser includes some additional features that help you control what "
-"information can be tied to your identity."
-msgstr ""
-"使用洋葱路由网络可以防止网络监听者找出您的真实网络地址以及实际地理位置,但是他们仍然能够将您在网络上活动的各种纪录连接组合在一起,并还原出您的网络活动全貌。有鉴于此,Tor"
-" 浏览器有加入一些特殊设计,可以帮助您管控可能被用于身份识别的相关信息。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### THE URL BAR"
-msgstr "### 地址栏"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser centers your web experience around your relationship with the "
-"website in the URL bar. Even if you connect to two different sites that use "
-"the same third-party tracking service, Tor Browser will force the content to"
-" be served over two different Tor circuits, so the tracker will not know "
-"that both connections originate from your browser."
-msgstr ""
-"Tor "
-"浏览器会以您在地址栏中的网站名称为中心,来维护您与网站间的交互关系,因此,即使您连上了两个不同的网站,但两个站台上都有使用相同的第三方网络追踪者,Tor"
-" "
-"浏览器仍会强制让您与这两个网站间的连接,透过两条不同的洋葱路由回路来交换数据,如此可以让第三方网络追踪者非常难以察觉这两条通往不同网站的连接,其实都是源自于您的浏览器。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"On the other hand, all connections to a single website address will be made "
-"over the same Tor circuit, meaning you can browse different pages of a "
-"single website in separate tabs or windows, without any loss of "
-"functionality."
-msgstr ""
-"从另一方面而言,所有通往同一网站的连接都将会透过同一条洋葱路由回路来达成,因此即使您在浏览器中打开多个不同的页签来阅览同一网站中的不同网页,其网站的功能也不会受到影响。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-msgstr ""
-"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
-"src=\"../../static/images/circuit_full.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can see a diagram of the circuit that Tor Browser is using for the "
-"current tab in the site information menu, in the URL bar."
-msgstr "您可以在地址栏的站点信息菜单中看到 Tor 浏览器为当前选项卡使用的线路图。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"In the circuit, the Guard or entry node is the first node and it's "
-"automatically and randomly selected by Tor. But it is different from the "
-"other nodes in the circuit. In order to avoid profiling attacks, the Guard "
-"node changes only after 2-3 months, unlike the other nodes, which change "
-"with every new domain. For more information about Guards, consult the "
-"[FAQ](https://www.torproject.org/docs/faq#EntryGuards) and [Support "
-"Portal](https://support.torproject.org/tbb/tbb-2/)."
-msgstr ""
-"在一个 Tor 回路中,“守卫”或入口节点是第一个节点,它是被 Tor 自动且随机选择的。但它跟回路中的其他 "
-"节点不一样。为了避免用户建档攻击,守卫节点每 2-3 "
-"个月才更换一次,不像其他节点,每访问一个新域名都是一个新的节点。关于守卫节点的更多信息,请查看[常见问题](https://www.torprojec…"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### LOGGING IN OVER TOR"
-msgstr "### 使用 Tor 登录"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Although Tor Browser is designed to enable total user anonymity on the web, "
-"there may be situations in which it makes sense to use Tor with websites "
-"that require usernames, passwords, or other identifying information."
-msgstr "尽管 Tor 浏览器在设计上是使用户在网络上全面匿名,但也有一些情况需要使用 Tor 并配合用户名、密码或其他识别信息来登录网站。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"If you log into a website using a regular browser, you also reveal your IP "
-"address and geographical location in the process. The same is often true "
-"when you send an email. Logging into your social networking or email "
-"accounts using Tor Browser allows you to choose exactly which information "
-"you reveal to the websites you browse. Logging in using Tor Browser is also "
-"useful if the website you are trying to reach is censored on your network."
-msgstr ""
-"如果您使用常规浏览器登录网站,在此过程中会暴露您的 IP 地址和地理位置。发送电子邮件也是如此。使用 Tor "
-"浏览器登录您的社交网络或电子邮件账户时,您可以精细的选择提供给网站的信息。如果您尝试访问的网站在您的网络上被审查,使用 Tor 浏览器登录也很有用。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"When you log in to a website over Tor, there are several points you should "
-"bear in mind:"
-msgstr "当您通过 Tor 登录一个网站时,有几点应该牢记:"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* See the [Secure Connections](/secure-connections) page for important "
-"information on how to secure your connection when logging in."
-msgstr "参见[加固连接](/zh-CN/secure-connections)页面以获取更多关于登录时加固你的连接的资讯。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser often makes your connection appear as though it is coming from"
-" an entirely different part of the world. Some websites, such as banks or "
-"email providers, might interpret this as a sign that your account has been "
-"hacked or compromised, and lock you out. The only way to resolve this is by "
-"following the site’s recommended procedure for account recovery, or "
-"contacting the operators and explaining the situation."
-msgstr ""
-"* Tor "
-"浏览器会让您的网络活动看起来像是来自于世界各个不同地区的网络连接,有时候某些像是银行或电子邮件服务的网站会认为您的帐号被他人盗用了,因此自动将您的帐号锁定,要解决此情况的唯一方式是利用网站服务提供的帐号找回功能,或直接向该网站服务的操作员说明您的情况。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### CHANGING IDENTITIES AND CIRCUITS"
-msgstr "### 更改身份和链路"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/new_identity.png\">"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser features “New Identity” and “New Tor Circuit for this Site” "
-"options. There are also located in the main menu (hamburger menu)."
-msgstr "Tor 浏览器具有“新身份”和“此站点的新 Tor 线路”选项。 也位于主菜单中。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW IDENTITY"
-msgstr "### 新的身份"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if you want to prevent your subsequent browser "
-"activity from being linkable to what you were doing before. Selecting it "
-"will close all your open tabs and windows, clear all private information "
-"such as cookies and browsing history, and use new Tor circuits for all "
-"connections. Tor Browser will warn you that all activity and downloads will "
-"be stopped, so take this into account before clicking “New Identity”."
-msgstr ""
-"若您想要避免后续在网络上活动的相关记录,与您之前网络活动之记录被链接组合在一起,此选项即可帮助您达成此目的。运行此功能将会关闭所有已经打开的浏览器窗口及标签页,清除所有的浏览器"
-" Cookie 与历史记录等个人信息,并且为后续所有的网络连接创建新的洋葱路由回路。Tor "
-"浏览器将会警告您说所有正在进行中的活动与下载将会被终止,因此在点击“新身份”选项前,请先做好相关的准备。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"To use this option, you just need to click on 'New Identity' in Tor "
-"Browser's toolbar."
-msgstr "要使用此选项,只需在Tor 浏览器的工具栏中单击“新身份”。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid "### NEW TOR CIRCUIT FOR THIS SITE"
-msgstr "### 用于此网站的新 Tor 链路"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"This option is useful if the [exit relay](/about/#how-tor-works) you are "
-"using is unable to connect to the website you require, or is not loading it "
-"properly. Selecting it will cause the currently-active tab or window to be "
-"reloaded over a new Tor circuit. Other open tabs and windows from the same "
-"website will use the new circuit as well once they are reloaded. This option"
-" does not clear any private information or unlink your activity, nor does it"
-" affect your current connections to other websites."
-msgstr ""
-"这个选项在你使用的[出口节点](/zh-CN/about/#how-tor-"
-"works)无法让你连上或载入你要去的网站的时候会比较有用。选择了这个选项后当前活跃的标签页或窗口会用新的 Tor "
-"回路重新载入。其他同一网站的标签页和窗口也会在重新载入时使用新的回路。这个选项不会清除任何私人信息或断开你的在线活动,也不会影响你当前对别的网站的连接。"
-
-#: https//tb-manual.torproject.org/managing-identities/
-#: (content/managing-identities/contents+en.lrtopic.body)
-msgid ""
-"You can also access this option in the new circuit display, in the site "
-"information menu, in the URL bar."
-msgstr "你也可以从地址栏的网站信息菜单中选择“新的 Tor 线路”来进入此选项。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.title)
-msgid "ONION SERVICES"
-msgstr "洋葱服务"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.description)
-msgid "Services that are only accessible using Tor"
-msgstr "只能使用洋葱路由访问的服务"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services (formerly known as “hidden services”) are services (like "
-"websites) that are only accessible through the Tor network."
-msgstr "洋葱服务 (旧名为“隐身服务”) 是一种只能透过洋葱路由网络访问的网络服务 (例如网站)。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Onion services offer several advantages over ordinary services on the non-"
-"private web:"
-msgstr "洋葱服务提供了许多架设在非私密网络空间之普通网站所没有的优势:"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* An onion services’s location and IP address are hidden, making it "
-"difficult for adversaries to censor it or identify its operators."
-msgstr "* 洋葱服务的真实网络地址与地理位置信息被隐藏,因此很难过滤审查通往该站点之的网络连接,也很难找出该网站管理员的真实身份。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* All traffic between Tor users and onion services is end-to-end encrypted, "
-"so you do not need to worry about [connecting over HTTPS](/secure-"
-"connections)."
-msgstr ""
-"* Tor 用户与洋葱服务之间所有的流量都是端到端加密的,所以你不必担心 [HTTPS 连接方面的问题](/zh-CN/secure-"
-"connections)。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"* The address of an onion service is automatically generated, so the "
-"operators do not need to purchase a domain name; the .onion URL also helps "
-"Tor ensure that it is connecting to the right location and that the "
-"connection is not being tampered with."
-msgstr ""
-"* 洋葱服务的网址是为自动生成,因此网站的架设者或管理员无需另行购买网络域名。其网址皆是以 .onion "
-"结尾的,此等设计可以让洋葱路由系统确保所有网络连接都通往正确的站点,并且其连接数据未被窜改。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### HOW TO ACCESS AN ONION SERVICE"
-msgstr "### 如何访问洋葱服务"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"Just like any other website, you will need to know the address of an onion "
-"service in order to connect to it. An onion address is a string of 16 (and "
-"in V3 format, 56) mostly random letters and numbers, followed by “.onion”."
-msgstr ""
-"和其它的网站一样,您也需要知道您要访问的洋葱服务的地址。洋葱服务的地址由 16 位(对于新的 V3 格式是 56 位)几乎随机的字母和数字加上 "
-"\".onion\" 组成。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"When accessing a website that uses an onion service, Tor Browser will show "
-"at the URL bar an icon of a little green onion displaying the state of your "
-"connection: secure and using an onion service. And if you're accessing a "
-"website with https and onion service, it will show an icon of a green onion "
-"and a padlock."
-msgstr ""
-"当你访问洋葱服务网站时,Tor 浏览器会在地址栏左侧以一个绿色的洋葱图标表示你的连接状态:正在安全地使用 Tor 服务。 如果你使用的是 https "
-"链接和 Tor 服务,其会显示一个绿色洋葱和一个挂锁。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid "### TROUBLESHOOTING"
-msgstr "### 疑难解答"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you cannot reach the onion service you require, make sure that you have "
-"entered the onion address correctly: even a small mistake will stop Tor "
-"Browser from being able to reach the site."
-msgstr ""
-"如果您无法访问您想访问的洋葱服务,首先检查您所输入的洋葱服务的地址是否正确。一个微小的错误(例如一个字母错误)都会使 Tor 浏览器无法连接到网站。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"If you are still unable to connect to the onion service, please try again "
-"later. There may be a temporary connection issue, or the site operators may "
-"have allowed it to go offline without warning."
-msgstr "如果您仍然无法连上该洋葱服务的话,请稍候再试,有可能是网络连接有出现暂时性阻碍,或者是该网站的管理员暂时将站台关闭了。"
-
-#: https//tb-manual.torproject.org/onion-services/
-#: (content/onion-services/contents+en.lrtopic.body)
-msgid ""
-"You can also ensure that you're able to access other onion services by "
-"connecting to [DuckDuckGo's Onion Service](http://3g2upl4pq6kufc4m.onion/)."
-msgstr ""
-"你可以通过连接 [DuckDuckGo 的洋葱服务](http://3g2upl4pq6kufc4m.onion/)来确保你能够访问其他洋葱服务。"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.title)
-msgid "SECURE CONNECTIONS"
-msgstr "安全连接"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.description)
-msgid "Learn how to protect your data using Tor Browser and HTTPS"
-msgstr "了解如何使用 Tor 浏览器与 HTTPS 保护您的数据"
-
-#: https//tb-manual.torproject.org/secure-connections/
-#: (content/secure-connections/contents+en.lrtopic.body)
-msgid ""
-"If personal information such as a login password travels unencrypted over "
-"the Internet, it can very easily be intercepted by an eavesdropper. If you "
-"are logging into any website, you should make sure that the site offers "
-"HTTPS encryption, which protects against this kind of eavesdropping. You can"
-" verify this in the URL bar: if your connection is encrypted, the address "
-"will begin with “https://”, rather than “http://”."
-msgstr ""
-"如果登录帐号及密码等个人数据是以未经加密的形态在网络上发送,那任何网络监听者都可以轻易地拦截和窃取此信息。因此,每当您尝试登录某个网站时,应当要先确认该网站是否有提供"
-" HTTPS "
-"加密连接,以确保您的个人数据安全。确认的方式非常简单,只需注意观察其网址的部分,若是以“https://”开头,则表示连接处于加密状态,但若开头为“http://”,则该连接上所传输的数据都未被加密。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.title)
-msgid "SECURITY SETTINGS"
-msgstr "安全设置"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.description)
-msgid "Configuring Tor Browser for security and usability"
-msgstr "为安全和易用而配置 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"By default, Tor Browser protects your security by encrypting your browsing "
-"data."
-msgstr "在默认情况下,Tor 浏览器浏览器将加密你的浏览数据来保护你的安全性."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can further increase your security by choosing to disable certain web "
-"features that can be used to attack your security and anonymity."
-msgstr "你可以禁用某些互联网功能来进一步提高安全性和匿名性."
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can do this by increasing Tor Browser's Security Levels in the shield "
-"menu."
-msgstr "您可以在通过在盾牌菜单里提高 Tor 浏览器的安全等级来做到这一点。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing Tor Browser's security level will stop some web pages from "
-"functioning properly, so you should weigh your security needs against the "
-"degree of usability you require."
-msgstr "提升Tor 浏览器的安全级别会阻止一些网页的正常功能,所以您需要权衡您的安全与可用性需求。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### ACCESSING THE SECURITY SETTINGS"
-msgstr "### 访问安全设置"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"The Security Settings can be accessed by clicking the Shield icon next to "
-"the Tor Browser URL bar."
-msgstr "安全设置可以通过点击Tor 浏览器地址栏旁的盾形图标进行访问。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"To view and adjust your Security Settings, click the 'Advanced Security "
-"Settings...' button in the shield menu."
-msgstr "查看与调整您的安全设置,点击在菜单中的“高级安全设置...”按钮。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"anim.gif\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "### SECURITY LEVELS"
-msgstr "### 安全级别"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"Increasing the Security Level in the Tor Browser Security Settings will "
-"disable or partially disable certain browser features to protect against "
-"possible attacks."
-msgstr "提升Tor 浏览器中的安全级别会禁用或部分禁用浏览器功能来防止可能的攻击。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"You can enable these settings again at any time by adjusting your Security "
-"Level."
-msgstr "你可以通过调整您的安全级别在任何时间重新开启这些设置。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-msgstr ""
-"<img class=\"col-lg-6\" src=\"../../static/images/security-settings-"
-"safest.png\">"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Standard"
-msgstr "###### 标准"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "* At this level, all Tor Browser and website features are enabled."
-msgstr "* 在这个级别,所有 Tor 浏览器和网站特性都被启用。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safer"
-msgstr "###### 较为安全"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level disables website features that are often dangerous. This may "
-"cause some sites to lose functionality."
-msgstr "* 这个级别会禁用比较危险的网站特性。这可能导致一些网站的功能缺失。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* JavaScript is disabled on all non-[HTTPS](/secure-connections) sites; some"
-" fonts and math symbols are disabled; audio and video (HTML5 media) are "
-"click-to-play."
-msgstr ""
-"* 所有[非 HTTPS](/zh-CN/secure-connections) 的网站上的 JavaScript "
-"都会被禁用;一些字体和数学符号会被禁用;音频和视频(HTML5 媒体)点击即可播放。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "###### Safest"
-msgstr "###### 最安全"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* This level only allows website features required for static sites and "
-"basic services."
-msgstr "* 这个级别只允许那些静态页面和基础服务才需要的功能启用。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid "These changes affect images, media, and scripts."
-msgstr "这些改变影响图像,媒体与脚本。"
-
-#: https//tb-manual.torproject.org/security-settings/
-#: (content/security-settings/contents+en.lrtopic.body)
-msgid ""
-"* Javascript is disabled by default on all sites; some fonts, icons, math "
-"symbols, and images are disabled; audio and video (HTML5 media) are click-"
-"to-play."
-msgstr "* Javascript 在所有网站上被默认关闭;一些字体,图标,数学符号和图片被禁用;音频和视频(HTML5 媒体)都是点击即可播放的。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.title)
-msgid "UPDATING"
-msgstr "更新"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.description)
-msgid "How to update Tor Browser"
-msgstr "如何更新 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser must be kept updated at all times. If you continue to use an "
-"outdated version of the software, you may be vulnerable to serious security "
-"flaws that compromise your privacy and anonymity."
-msgstr "Tor 浏览器必须要随时保持在最新版本状态,若您使用较旧版本的话,可能存在某些能够用来破坏您的隐私性或匿名性的安全性漏洞。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser will prompt you to update the software once a new version has "
-"been released: the Torbutton icon will display a yellow triangle, and you "
-"may see a written update indicator when Tor Browser opens. You can update "
-"either automatically or manually."
-msgstr ""
-"每当 Tor 浏览器有更新版被发布时,都会有提示自动出现:Torbutton 功能按钮会出现黄色三角形图标,且当您打开 Tor "
-"浏览器时,也会以文本说明通知您,此时您可以手动或自动的方式来更新。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER AUTOMATICALLY"
-msgstr "### 自动更新 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-msgstr "<img width=\"400\" src=\"../../static/images/update1.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, click on hamburger menu (main "
-"menu), then select “Restart to update Tor browser”."
-msgstr "当提示您更新 Tor 浏览器时,单击主菜单,然后选择“重新启动以更新 Tor 浏览器”。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-msgstr "<img width=\"500\" src=\"../../static/images/update4.png\" />"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Wait for the update to download and install, then Tor Browser will restart "
-"itself. You will now be running the latest version."
-msgstr "等待更新下载并安装,然后 Tor 浏览器将自行重启。 您现在将运行最新版本。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid "### UPDATING TOR BROWSER MANUALLY"
-msgstr "### 手动更新 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"When you are prompted to update Tor Browser, finish the browsing session and"
-" close the program."
-msgstr "在您被提示应更新 Tor 浏览器时,结束浏览并关闭程序。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Remove Tor Browser from your system by deleting the folder that contains it "
-"(see the [Uninstalling](/uninstalling) section for more information)."
-msgstr "从您的系统中删除 Tor 浏览器只需要删除包含它的文件夹(查看[卸载](/zh-CN/uninstalling)部分来获取更多信息)。"
-
-#: https//tb-manual.torproject.org/updating/
-#: (content/updating/contents+en.lrtopic.body)
-msgid ""
-"Visit https://www.torproject.org/download/ and download a copy of the latest"
-" Tor Browser release, then install it as before."
-msgstr ""
-"请到 https://www.torproject.org/download/ 下载最新版的 Tor 浏览器,并用和之前一样的方式将它安装进系统中。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.title)
-msgid "TROUBLESHOOTING"
-msgstr "疑难解答"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.description)
-msgid "What to do if Tor Browser doesn’t work"
-msgstr "Tor 浏览器不好使了该怎么做"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"You should be able to start browsing the web using Tor Browser shortly after"
-" running the program, and clicking the “Connect” button if you are using it "
-"for the first time."
-msgstr "理论上来说,当 Tor 浏览器启动后您应该可以直接开始浏览网页,若是首次启动的话只需要再点击“连接”按钮即可开始上网。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### QUICK FIXES"
-msgstr "### 快速修复"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If Tor Browser doesn’t connect, there may be a simple solution. Try each of "
-"the following:"
-msgstr "如果 Tor 浏览器没有连接,那么可能比较简单。逐个尝试下列方法:"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Your computer’s system clock must be set correctly, or Tor will not be "
-"able to connect."
-msgstr "* 您的计算机系统的时钟必须正确设置,否则洋葱路由无法连接。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure another Tor Browser is not already running. If you’re not sure "
-"if Tor Browser is running, restart your computer."
-msgstr "* 确保没有其他 Tor 浏览器正在运行。如果您无法确认,请重启您的计算机。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Make sure that any antivirus program you have installed is not preventing "
-"Tor from running. You may need to consult the documentation for your "
-"antivirus software if you do not know how to do this."
-msgstr "* 请确认您电脑中所安装的杀毒软件不会阻挡洋葱路由的运行,若您不确定的话可能需要查阅杀毒软件的相关手册或说明文档。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "* Temporarily disable your firewall."
-msgstr "* 临时禁用您的防火墙。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"* Delete Tor Browser and install it again. If updating, do not just "
-"overwrite your previous Tor Browser files; ensure they are fully deleted "
-"beforehand."
-msgstr "* 移除掉 Tor 浏览器后再重新安装,若是要更新版本的话,请不要用新版软件去覆盖已安装的旧版本,安装前先确认旧版本是否已经完全移除。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### IS YOUR CONNECTION CENSORED?"
-msgstr "### 您的连接是否受审查?"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"If you still can’t connect, your Internet Service Provider might be "
-"censoring connections to the Tor network. Read the "
-"[Circumvention](/circumvention) section for possible solutions."
-msgstr ""
-"如果您仍然无法连接,您的互联网服务提供商可能正在监控针对 Tor 网络的连接。阅读[规避](/zh-"
-"CN/circumvention)部分来寻找部分解决方案。"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid "### KNOWN ISSUES"
-msgstr "### 已知问题"
-
-#: https//tb-manual.torproject.org/troubleshooting/
-#: (content/troubleshooting/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is under constant development, and some issues are known about "
-"but not yet fixed. Please check the [Known Issues](/known-issues) page to "
-"see if the problem you are experiencing is already listed there."
-msgstr ""
-"Tor 浏览器正在持续地发展,一些已知的问题并没有被完全修复。请查找[已知问题](/zh-CN/known-"
-"issues)页面来查看您遭遇的一些问题是否已经列出。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.title)
-msgid "PLUGINS, ADD-ONS AND JAVASCRIPT"
-msgstr "插件、附加包和JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.description)
-msgid "How Tor Browser handles add-ons, plugins and JavaScript"
-msgstr "Tor 浏览器如何处理附加组件、插件和 JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### FLASH PLAYER"
-msgstr "### Flash Player"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Video websites, such as Vimeo make use of the Flash Player plugin to display"
-" video content. Unfortunately, this software operates independently of Tor "
-"Browser and cannot easily be made to obey Tor Browser’s proxy settings. It "
-"can therefore reveal your real location and IP address to the website "
-"operators, or to an outside observer. For this reason, Flash is disabled by "
-"default in Tor Browser, and enabling it is not recommended."
-msgstr ""
-"某些如 Vimeo 等视频网站使用 Flash Player 插件来播放内容。而非常遗憾地,此插件程序是独立运行的软件,且完全不遵循 Tor "
-"浏览器之代理服务器设置。因此若启用此插件程序,您的真实网络地址将会直接公开给网站的管理员以及任何正在网络上监听的恶意人士,故在 Tor 浏览器中 "
-"Flash Player 为默认关闭,在此也不建议您去启用它。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Some video websites (such as YouTube) offer alternative video delivery "
-"methods that do not use Flash. These methods may be compatible with Tor "
-"Browser."
-msgstr ""
-"某些视频网站(例如 YouTube)有提供不需使用 Flash Player 插件的视频播放器,此类型的在线视频播放方式可与 Tor 浏览器兼容。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### JAVASCRIPT"
-msgstr "### JavaScript"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"JavaScript is a programming language that websites use to offer interactive "
-"elements such as video, animation, audio, and status timelines. "
-"Unfortunately, JavaScript can also enable attacks on the security of the "
-"browser, which might lead to deanonymization."
-msgstr ""
-"JavaScript 是一种内嵌于网页中的编程语言,它可以提供网站的各种交互式组件,像是视频、音乐、动画、时间状态等。而遗憾的是,JavaScript "
-"也可能被利用来发动破解浏览器安全防护机制的攻击,其结果有可能会让用户的真实身份曝光。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser includes an add-on called NoScript. It's accessible through "
-"'Preferences' on hamburger menu (main menu), then select 'Customize' and "
-"drag the “S” icon to the top-right of the window. NoScript allows you to "
-"control the JavaScript (and other scripts) that runs on individual web "
-"pages, or block it entirely."
-msgstr ""
-"Tor 浏览器包含一个名为 NoScript 的插件。 "
-"可以通过汉堡菜单(主菜单)上的“首选项”进行访问,然后选择“自定义”并将“S”图标拖到窗口的右上角。 NoScript "
-"允许您控制在单个网页上运行的JavaScript(和其他脚本),或完全阻止它。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Users who require a high degree of security in their web browsing should set"
-" Tor Browser’s [Security Level](../security-settings/) to “Safer” (which "
-"disables JavaScript for non-HTTPS websites) or “Safest” (which does so for "
-"all websites). However, disabling JavaScript will prevent many websites from"
-" displaying correctly, so Tor Browser’s default setting is to allow all "
-"websites to run scripts in \"Standard\" mode."
-msgstr ""
-"在网络浏览中需要高度安全性的用户应将 Tor 浏览器的[安全级别](../ security-settings /)设置为“更安全”(对非 HTTPS "
-"网站禁用 JavaScript)或“最安全”( 对于所有网站禁用 JavaScript)。 但是,禁用 JavaScript "
-"会阻止许多网站正确显示,因此 Tor 浏览器的默认设置是允许所有网站以“标准”模式运行脚本。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid "### BROWSER ADD-ONS"
-msgstr "### 浏览器附加包"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"Tor Browser is based on Firefox, and any browser add-ons or themes that are "
-"compatible with Firefox can also be installed in Tor Browser."
-msgstr "Tor 浏览器基于 Firefox,任何兼容 Firefox 的附加组件和主题都可以在 Tor 浏览器中安装。"
-
-#: https//tb-manual.torproject.org/plugins/
-#: (content/plugins/contents+en.lrtopic.body)
-msgid ""
-"However, the only add-ons that have been tested for use with Tor Browser are"
-" those included by default. Installing any other browser add-ons may break "
-"functionality in Tor Browser or cause more serious problems that affect your"
-" privacy and security. It is strongly discouraged to install additional add-"
-"ons, and the Tor Project will not offer support for these configurations."
-msgstr ""
-"但是,仅 Tor 浏览器默认自带的附加组件经过了适用 Tor 浏览器的测试。安装任何其他的浏览器附加组件可能破坏 Tor "
-"浏览器的功能或导致更严重的问题,包括影响您的隐私与安全性。强烈建议您不要安装额外的附加组件,Tor 项目不为这些配置提供支持。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.title)
-msgid "UNINSTALLING"
-msgstr "卸载"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.description)
-msgid "How to remove Tor Browser from your system"
-msgstr "如何在您的系统上删除 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "Removing Tor Browser from your system is simple:"
-msgstr "在您的系统上删除 Tor 浏览器非常简单:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Windows:"
-msgstr "在 Windows 中:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder or application. The default location is the"
-" Desktop."
-msgstr "* 找到您的Tor 浏览器文件夹或应用。 默认位置位于桌面。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder or application."
-msgstr "* 删除 Tor 浏览器文件夹或者应用程序。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Empty your Trash."
-msgstr "* 清空回收站。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On macOS:"
-msgstr "在 macOS 中:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser application. The default location is the "
-"Applications folder."
-msgstr "* 找到您的Tor 浏览器应用。默认位置在应用文件夹。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Move the Tor Browser application to Trash."
-msgstr "* 将 Tor 浏览器应用移除到回收站。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Go to your `~/Library/Application Support/` folder."
-msgstr "* 前往您的 `~/Library/Application Support/`文件夹。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Note the Library folder is hidden on newer versions of macOS. To navigate "
-"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
-msgstr "* 注意 Library 文件夹在新版的 macOS 中是被隐藏的。在访达中访问这个文件夹,需要选择”前往“菜单中的”前往文件夹...“。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-menu.png\" alt=\"Go "
-"to folder menu option.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Then type \"~/Library/Application Support/\" in the window and click Go."
-msgstr "* 然后在窗口中输入 \"~/Library/Application Support/\" 并点击确定."
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-msgstr ""
-"<img class=\"\" src=\"/static/images/macos-go-to-folder-window.png\" "
-"alt=\"Go to folder window.\">"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Locate the TorBrowser-Data folder and move it to Trash."
-msgstr "* 找到 TorBrowser-Data 文件夹并把它移到回收站。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that if you did not install Tor Browser in the default location (the "
-"Applications folder), then the TorBrowser-Data folder is not located in the "
-"`~/Library/Application Support/` folder, but in the same folder where you "
-"installed Tor Browser."
-msgstr ""
-"注意如果您没有将Tor 浏览器安装在默认位置(应用文件夹),那么TorBrowser-Data "
-"文件夹就不会位于`~/Library/Application Support/`文件夹,但是会在您安装Tor 浏览器文件夹下的相同位置。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "On Linux:"
-msgstr "在Linux中:"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"* Locate your Tor Browser folder. On Linux, there is no default location, "
-"however the folder will be named \"tor-browser_en-US\" if you are running "
-"the English Tor Browser."
-msgstr ""
-"* 找到您的Tor 浏览器文件夹。在Linux上,没有默认位置,但是如果您正在运行英文版的Tor 浏览器,这个文件夹将会被命名为”tor-"
-"browser_en-US“。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid "* Delete the Tor Browser folder."
-msgstr "* 删除 Tor 浏览器文件夹。"
-
-#: https//tb-manual.torproject.org/uninstalling/
-#: (content/uninstalling/contents+en.lrtopic.body)
-msgid ""
-"Note that your operating system’s standard \"Uninstall\" utility is not "
-"used."
-msgstr "注意您的操作系统的标准“卸载”功能是没用的。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.title)
-msgid "KNOWN ISSUES"
-msgstr "已知问题"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor needs your system clock (and your time zone) set to the correct time."
-msgstr "* Tor 需要您的系统时钟(及您的时区)设为正确的时间。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The following firewall software have been known to interfere with Tor and "
-"may need to be temporarily disabled:"
-msgstr "* 下列防火墙软件已知会干扰 Tor 并可能需暂时禁用:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Webroot SecureAnywhere"
-msgstr "* Webroot SecureAnywhere"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Kaspersky Internet Security 2012"
-msgstr "* 卡巴斯基 Internet Security 2012"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Sophos Antivirus for Mac"
-msgstr "* Sophos Antivirus for Mac"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Microsoft Security Essentials"
-msgstr "* Microsoft Security Essentials (MSE)"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Videos that require Adobe Flash are unavailable. Flash is disabled for "
-"security reasons."
-msgstr "* 需要 Adobe Flash 的视频不可用。Flash 已因安全考虑而禁用。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "* Tor can not use a bridge if a proxy is set."
-msgstr "* Tor 在已使用代理时无法使用一个网桥。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* The Tor Browser package is dated January 1, 2000 00:00:00 UTC. This is to "
-"ensure that each software build is exactly reproducible."
-msgstr "* Tor 浏览器的软件包日期被设定为 2000年1月1日00:00:00 UTC。这是为了确保软件包构建后的结果完全可复建。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* To run Tor Browser on Ubuntu, users need to execute a shell script. Open "
-"\"Files\" (Unity's explorer), open Preferences → Behavior Tab → Set \"Run "
-"executable text files when they are opened\" to \"Ask every time\", then "
-"click OK."
-msgstr ""
-"* 要在 Ubuntu 上运行 Tor 浏览器,用户需要执行一个 shell 脚本。打开“文件”(Unity 的浏览器),打开 首选项 → 行为选项卡 "
-"→ 设置“打开时运行可执行文本文件” 为“始终询问”,然后点击确定。"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* Tor Browser can also be started from the command line by running the "
-"following command from inside the Tor Browser directory:"
-msgstr "* Tor 浏览器也可在 Tor 浏览器的目录内运行下列命令行来启动:"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid "./start-tor-browser.desktop"
-msgstr "./start-tor-browser.desktop"
-
-#: https//tb-manual.torproject.org/known-issues/
-#: (content/known-issues/contents+en.lrtopic.body)
-msgid ""
-"* BitTorrent in specific is [not anonymous over "
-"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
-msgstr ""
-"* 特别地,BitTorrent [在 Tor 中是无法匿名的](https://blog.torproject.org/bittorrent-"
-"over-tor-isnt-good-idea)。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.title)
-msgid "MAKE TOR BROWSER PORTABLE"
-msgstr "使 Tor 浏览器更便携"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.description)
-msgid "How to install Tor Browser onto removable media"
-msgstr "如何在一个可移除的媒介上安装 Tor 浏览器"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"If preferred, Tor Browser may be made portable by extracting it from its "
-"archive directly onto removable media such as a USB stick or SD card."
-msgstr "如果愿意,可以通过将 Tor 浏览器从其存档直接提取到可移动媒体(例如 USB 记忆棒或 SD 卡)上,从而使其具有便携性。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"It is recommended to use writable media so that Tor Browser can be updated "
-"as required."
-msgstr "建议使用可写媒体,以便可以根据需要更新 Tor 浏览器。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. Any filesystem type will "
-"work."
-msgstr "1. 插入您的可插拔存储器并格式化它。任何的文件系统都满足需求。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"2. Navigate to the Tor Browser [download "
-"page](https://torproject.org/download)."
-msgstr "2. 访问 Tor 浏览器[下载页面](https://torproject.org/download)。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Windows `.exe` file and save it directly to your media."
-msgstr "3. 下载 Windows 的“.exe”文件并将其直接保存进您的储存器中。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"4. (Recommended) Verify the [files "
-"signature](https://support.torproject.org/tbb/how-to-verify-signature/)."
-msgstr ""
-"4.(推荐)验证[文件签名](https://support.torproject.org/tbb/how-to-verify-signature/)。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.exe` file and begin the "
-"installation process."
-msgstr "5. 当下载完成后,点击“.exe”文件并开始安装进程。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"6. When the installer asks where to install Tor Browser, select your "
-"removable media."
-msgstr "6. 当安装程序询问 Tor 浏览器的安装位置时,选择您的可插拔存储器。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"1. Plug in your removable media and format it. You *must* use macOS Extended"
-" (Journaled) format."
-msgstr "1. 插入可移动媒体并对其进行格式化。 您*必须*使用 macOS 扩展(日志式)格式。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid "3. Download the macOS `.dmg` file and save it directly to your media."
-msgstr "3.下载 macOS 的.dmg文件并将其直接保存到您的媒体中。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, click the `.dmg` file and begin the "
-"installation process."
-msgstr "5.下载完成后,单击`.dmg`文件并开始安装过程。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"3. Download the Linux `.tar.xz` file and save it directly to your media."
-msgstr "3. 下载 Linux 的`.tar.xz`文件并将其直接保存到您的媒体中。"
-
-#: https//tb-manual.torproject.org/make-tor-portable/
-#: (content/make-tor-portable/contents+en.lrtopic.body)
-msgid ""
-"5. When the download is complete, extract the archive onto the media as "
-"well."
-msgstr "5.下载完成后,也将存档解压缩到媒体上。"
-
-#: lego/templates/banner.html:3 lego/templates/banner.html:5
-#: templates/banner.html:3 templates/banner.html:5
-msgid "Close banner"
-msgstr "关闭横幅"
-
-#: lego/templates/banner.html:11 templates/banner.html:11
-msgid "Tracking, surveillance, and censorship are widespread online."
-msgstr "跟踪,监视和审查在网上广泛存在。"
-
-#: lego/templates/banner.html:20 templates/banner.html:20
-msgid "TAKE BACK THE INTERNET WITH TOR"
-msgstr "与 Tor 一起回归互联网的本真"
-
-#: lego/templates/banner.html:33 lego/templates/banner.html:35
-#: templates/banner.html:33 templates/banner.html:35
-msgid "DONATE NOW"
-msgstr "立即捐助"
-
-#: lego/templates/banner.html:37 templates/banner.html:37
-msgid "Give today, and Mozilla will match your donation."
-msgstr "现在捐款, Mozilla 会匹配你的捐赠。"
-
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
-msgid "Download Tor Browser"
-msgstr "下载Tor浏览器"
-
-#: lego/templates/footer.html:11 templates/footer.html:11
-msgid ""
-"Download Tor Browser to experience real private browsing without tracking, "
-"surveillance, or censorship."
-msgstr "下载 Tor 浏览器,体验真正的私密浏览,不被追踪、监视或审查。"
-
-#: lego/templates/footer.html:28 templates/footer.html:28
-msgid "Our mission:"
-msgstr "我们的任务:"
-
-#: lego/templates/footer.html:29 templates/footer.html:29
-msgid ""
-"To advance human rights and freedoms by creating and deploying free and open"
-" source anonymity and privacy technologies, supporting their unrestricted "
-"availability and use, and furthering their scientific and popular "
-"understanding."
-msgstr ""
-"通过开发和部署自由和开源的匿名和隐私技术,来支持人们不受限制地使用网络,以及提高他们对科学和普世价值的认知,并增进他们对科学和日常知识的理解。"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate"
-msgstr "捐款"
-
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
-#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
-#: templates/navbar.html:20
-msgid "Donate Now"
-msgstr "立即捐助"
-
-#: lego/templates/footer.html:66 templates/footer.html:66
-msgid "Subscribe to our Newsletter"
-msgstr "订阅我们的新闻"
-
-#: lego/templates/footer.html:67 templates/footer.html:67
-msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr "获取 Tor Project 每月发布的更新和机遇:"
-
-#: lego/templates/footer.html:68 templates/footer.html:68
-msgid "Sign up"
-msgstr "订阅"
-
-#: lego/templates/footer.html:87 templates/footer.html:87
-#, python-format
-msgid ""
-"Trademark, copyright notices, and rules for use by third parties can be "
-"found in our %(link_to_faq)s"
-msgstr "商标保护、版权保护以及第三方使用规则可以在 %(link_to_faq)s 找到"
-
-#: lego/templates/navbar.html:25 templates/navbar.html:25
-msgid "Menu"
-msgstr "菜单"
-
-#: lego/templates/search.html:5 templates/search.html:5
-msgid "Search"
-msgstr "搜索"
-
-#: lego/templates/secure-connections.html:1
-#: templates/secure-connections.html:1
-msgid ""
-"The following visualization shows what information is visible to "
-"eavesdroppers with and without Tor Browser and HTTPS encryption:"
-msgstr "下方的展示呈现了有使用以及没有使用 Tor 浏览器与 HTTPS 加密连接时,网络监听者可以拦截窃取到的数据种类:"
-
-#: lego/templates/secure-connections.html:4
-#: templates/secure-connections.html:4
-msgid ""
-"Click the “Tor” button to see what data is visible to observers when you're "
-"using Tor. The button will turn green to indicate that Tor is on."
-msgstr "点击“Tor”按钮可以查看当您未使用洋葱路由时,有哪些数据可以让网络监听者直接拦截获取,当此按钮呈现绿色状态时,表示洋葱路由功能已经启动。"
-
-#: lego/templates/secure-connections.html:5
-#: templates/secure-connections.html:5
-msgid ""
-"Click the “HTTPS” button to see what data is visible to observers when "
-"you're using HTTPS. The button will turn green to indicate that HTTPS is on."
-msgstr ""
-"您可以点击“HTTPS”功能按钮来查看当 HTTPS 启用时,有哪些数据仍然可能被网络监听者拦截窃取。而当此按钮呈现绿色状态时,表示 HTTPS "
-"功能已经启动。"
-
-#: lego/templates/secure-connections.html:6
-#: templates/secure-connections.html:6
-msgid ""
-"When both buttons are green, you see the data that is visible to observers "
-"when you are using both tools."
-msgstr "当两个按钮都为绿色状态时,您可以看到在这两个功能都同时启动的状态下,网络监听者依能够窃取到的数据有哪些。"
-
-#: lego/templates/secure-connections.html:7
-#: templates/secure-connections.html:7
-msgid ""
-"When both buttons are grey, you see the data that is visible to observers "
-"when you don't use either tool."
-msgstr "而当这两个按钮都呈现灰色时,您则可以查看当这两个功能都在关闭的状态下时,网络监听者能够拦截窃取到的数据有哪些。"
-
-#: lego/templates/secure-connections.html:11
-#: templates/secure-connections.html:11
-msgid "HTTPS"
-msgstr "HTTPS"
-
-#: lego/templates/secure-connections.html:15
-#: lego/templates/secure-connections.html:65
-#: templates/secure-connections.html:15 templates/secure-connections.html:65
-msgid "Tor"
-msgstr "Tor"
-
-#: lego/templates/secure-connections.html:32
-#: templates/secure-connections.html:32
-msgid "POTENTIALLY VISIBLE DATA"
-msgstr "潜在可视数据"
-
-#: lego/templates/secure-connections.html:37
-#: templates/secure-connections.html:37
-msgid "Site.com"
-msgstr "Site.com"
-
-#: lego/templates/secure-connections.html:40
-#: templates/secure-connections.html:40
-msgid "The site being visited."
-msgstr "被访问的网站。"
-
-#: lego/templates/secure-connections.html:44
-#: templates/secure-connections.html:44
-msgid "user / pw"
-msgstr "用户名/密码"
-
-#: lego/templates/secure-connections.html:47
-#: templates/secure-connections.html:47
-msgid "Username and password used for authentication."
-msgstr "用于身份验证的用户名和密码。"
-
-#: lego/templates/secure-connections.html:51
-#: templates/secure-connections.html:51
-msgid "data"
-msgstr "数据"
-
-#: lego/templates/secure-connections.html:54
-#: templates/secure-connections.html:54
-msgid "Data being transmitted."
-msgstr "被传输的数据。"
-
-#: lego/templates/secure-connections.html:58
-#: templates/secure-connections.html:58
-msgid "location"
-msgstr "所处位置"
-
-#: lego/templates/secure-connections.html:61
-#: templates/secure-connections.html:61
-msgid ""
-"Network location of the computer used to visit the website (the public IP "
-"address)."
-msgstr "访问网站的计算机的网络位置(公网IP地址)。"
-
-#: lego/templates/secure-connections.html:68
-#: templates/secure-connections.html:68
-msgid "Whether or not Tor is being used."
-msgstr "是否使用了 Tor。"
-
-#: templates/layout.html:5
-msgid ""
-"Defend yourself against tracking and surveillance. Circumvent censorship."
-msgstr "防止你被追踪和监视。避开网络审查。"
-
-#: templates/layout.html:11
-msgid "Tor Project | Tor Browser Manual"
-msgstr "Tor 项目 | Tor 浏览器用户手册"
-
-#: templates/sidenav.html:4 templates/sidenav.html:35
-msgid "Topics"
-msgstr "主题"
-
-#: templates/macros/topic.html:22
-msgid "Contributors to this page:"
-msgstr "此页面的贡献者:"
-
-#: templates/macros/topic.html:24
-msgid "Edit this page"
-msgstr "编辑此页面"
-
-#: templates/macros/topic.html:25
-msgid "Suggest Feedback"
-msgstr "建议反馈"
-
-#: templates/macros/topic.html:26
-msgid "Permalink"
-msgstr "永久链接"
diff --git a/contents.pot b/contents.pot
index 638311cc09..b12a029b25 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+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"
@@ -73,8 +73,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Running Tor Browser for the first time"
+msgid "Running Tor Browser for the First Time"
+msgstr "Running Tor Browser for the First Time"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -93,8 +93,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Managing identities"
+msgid "Managing Identities"
+msgstr "Managing Identities"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -140,13 +140,20 @@ msgstr "Known issues"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr "Mobile Tor"
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Becoming a Tor Translator"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
+msgstr "Making Tor Browser Portable"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -560,6 +567,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -578,11 +587,11 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -598,56 +607,91 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
msgstr ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr "Tor Browser will take you through a series of configuration options."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
msgstr ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select “No”. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select “Yes”."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr "If you do not believe this is the case, leave this unchecked."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer “Yes”, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click “Continue”."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr "If possible, ask your network administrator for guidance."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click “Connect”."
+msgstr "If your connection does not use a proxy, click “Connect”."
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -744,13 +788,13 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -789,35 +833,65 @@ msgstr "### USING PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr "Your settings will automatically be saved once you close the tab."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -837,28 +911,28 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -955,41 +1029,60 @@ msgstr "### USING MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1017,24 +1110,29 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
+msgstr "Click \"Connect\" to save your settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1653,6 +1751,8 @@ msgstr "How to update Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1838,6 +1938,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### KNOWN ISSUES"
@@ -2219,6 +2321,986 @@ msgstr ""
"* BitTorrent in specific is [not anonymous over "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr "Learn about Tor for mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr "### Tor Browser for Android"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr "### DOWNLOADING AND INSTALLATION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+"It is very risky to download Tor Browser outside of these three platforms."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr "#### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr "#### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr "2. After installing F-Droid, open the app."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr "3. At the lower-right-hand corner, open \"Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr "4. Under the \"My Apps\" section, open Repositories."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr "5. Toggle \"Guardian Project Official Releases\" as enabled."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr "7. Tap the Back button at the upper-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr "8. Open \"Latest\" at the lower-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr "11. Search for \"Tor Browser for Android\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr "12. Open the query result by \"The Tor Project\" and install."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr "#### The Tor Project website"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr "#### Connect"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Tor’s connection progress."
+msgstr ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Tor’s connection progress."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr "#### Configure"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr "### CIRCUMVENTION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr "### MANAGING IDENTITIES"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr "#### New Identity"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr "Clicking on this button will provide you with a new identity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr "Selecting it will only change your Tor circuit."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr "### SECURITY SETTINGS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr "You can modify the security level by following given steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr "* Tap on a button of 3 vertical dots in URL bar."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr "* Scroll down and tap on \"Security Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr "* You can now select an option from the security level slider."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr "### UPDATING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr "You can update Tor Browser automatically or manually."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr "#### Updating Tor Browser for Android automatically"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr "##### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr "##### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr "Click on \"Settings\", then go to \"Manage installed apps\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr "#### Updating Tor Browser for Android manually"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr "### UNINSTALLING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr "#### Mobile device app settings"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr "### More about Tor on mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr "#### Orfox"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr "Android was released."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr "#### Orbot"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr "circumvent censorship and protect against surveillance."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr "### Tor Browser for iOS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr "There is no Tor Browser for iOS."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr "### Tor Browser for Windows Phone"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"There is currently no supported method for running Tor on Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2360,13 +3442,13 @@ msgstr "DONATE NOW"
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2374,11 +3456,11 @@ msgstr ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Our mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2390,33 +3472,33 @@ msgstr ""
"availability and use, and furthering their scientific and popular "
"understanding."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donate"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donate Now"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscribe to our Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Get monthly updates and opportunities from the Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Sign up"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
1
0

[translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
by translation@torproject.org 12 Apr '20
by translation@torproject.org 12 Apr '20
12 Apr '20
commit 92c3c33744b48cc92aff4358f29d5ff2b72bfb3d
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Apr 12 06:29:33 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
---
contents+ar.po | 1079 ++++++++++++++++++++++++++++++++++++++-----
contents+bg.po | 1033 +++++++++++++++++++++++++++++++++++++++---
contents+bn.po | 1092 +++++++++++++++++++++++++++++++++++++++-----
contents+ca.po | 1053 ++++++++++++++++++++++++++++++++++++++----
contents+cs.po | 1034 +++++++++++++++++++++++++++++++++++++++---
contents+da.po | 1025 ++++++++++++++++++++++++++++++++++++++---
contents+de.po | 1111 +++++++++++++++++++++++++++++++++++++++------
contents+el.po | 1108 +++++++++++++++++++++++++++++++++++++++------
contents+en-GB.po | 1033 +++++++++++++++++++++++++++++++++++++++---
contents+en.po | 1308 ++++++++++++++++++++++++++++++++++++++++++++++++-----
contents+es-AR.po | 1056 ++++++++++++++++++++++++++++++++++++++----
contents+es.po | 1119 ++++++++++++++++++++++++++++++++++++++++-----
contents+fa.po | 1106 ++++++++++++++++++++++++++++++++++++++------
contents+fr.po | 1105 ++++++++++++++++++++++++++++++++++++++------
contents+ga.po | 1054 ++++++++++++++++++++++++++++++++++++++----
contents+he.po | 1041 ++++++++++++++++++++++++++++++++++++++----
contents+hr.po | 1075 ++++++++++++++++++++++++++++++++++++++-----
contents+hu.po | 1036 +++++++++++++++++++++++++++++++++++++++---
contents+id.po | 1073 +++++++++++++++++++++++++++++++++++++++----
contents+is.po | 1059 +++++++++++++++++++++++++++++++++++++++----
contents+it.po | 1109 ++++++++++++++++++++++++++++++++++++++++-----
contents+ja.po | 1071 +++++++++++++++++++++++++++++++++++++++----
contents+ka.po | 1100 +++++++++++++++++++++++++++++++++++++++-----
contents+ko.po | 1034 +++++++++++++++++++++++++++++++++++++++---
contents+lt.po | 1086 +++++++++++++++++++++++++++++++++++++++-----
contents+lv.po | 1032 +++++++++++++++++++++++++++++++++++++++---
contents+mk.po | 1038 ++++++++++++++++++++++++++++++++++++++----
contents+ml.po | 1107 +++++++++++++++++++++++++++++++++++++++------
contents+ms.po | 1086 +++++++++++++++++++++++++++++++++++++++-----
contents+nb-NO.po | 1034 +++++++++++++++++++++++++++++++++++++++---
contents+nl.po | 1053 ++++++++++++++++++++++++++++++++++++++----
contents+pl.po | 1102 +++++++++++++++++++++++++++++++++++++++-----
contents+pt-BR.po | 1107 +++++++++++++++++++++++++++++++++++++++------
contents+pt-PT.po | 1102 +++++++++++++++++++++++++++++++++++++++-----
contents+ro.po | 1106 +++++++++++++++++++++++++++++++++++++++-----
contents+ru.po | 1058 +++++++++++++++++++++++++++++++++++++++----
contents+sr.po | 1027 ++++++++++++++++++++++++++++++++++++++---
contents+sv-SE.po | 1060 +++++++++++++++++++++++++++++++++++++++----
contents+th.po | 1048 ++++++++++++++++++++++++++++++++++++++----
contents+tr.po | 1107 ++++++++++++++++++++++++++++++++++++++++-----
contents+vi.po | 1034 +++++++++++++++++++++++++++++++++++++++---
contents+zh-CN.po | 1078 +++++++++++++++++++++++++++++++++++++++----
contents+zh-TW.po | 1038 +++++++++++++++++++++++++++++++++++++++---
contents.pot | 1308 ++++++++++++++++++++++++++++++++++++++++++++++++-----
44 files changed, 43181 insertions(+), 4344 deletions(-)
diff --git a/contents+ar.po b/contents+ar.po
index ec2b7ed82c..efd6db5c87 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Layla Taha <layla(a)asl19.org>, 2020\n"
"Language-Team: Arabic (https://www.transifex.com/otf/teams/1519/ar/)\n"
@@ -84,8 +84,8 @@ msgstr "Ø¬Ø§Ø±Ù Ø§ÙØªØÙ
ÙÙ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "ت؎غÙÙ Ù
تصÙÙØ ØªÙØ± (Tor) ÙÙÙ
رة Ø§ÙØ£ÙÙÙ"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +104,8 @@ msgstr "Ø§ÙØ¬Ø³Ùر"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "إدارة اÙÙÙÙØ§Øª"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,13 +151,20 @@ msgstr "اÙÙ
؎اÙ٠اÙÙ
عرÙÙØ©"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "ساÙÙ
ÙØ§ Ù٠ترجÙ
Ø© ØªÙØ± (Tor)"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr " جع٠Ù
تصÙÙØ ØªÙØ± (Tor) ÙÙÙØ§Ùا٠"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -564,6 +571,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -581,12 +590,9 @@ msgstr "Ø¹ÙØ¯ اÙÙÙØ±Ø Ø³ÙØžÙر ØŽØ±ÙØ· Ø§ÙØØ§ÙØ©Ø Ø§ÙØ°Ù Ø³ÙØ±Ù
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"إذا ÙØ§Ù ÙØ¯ÙÙÙ
Ø§ØªÙØµØ§Ù Ø³Ø±ÙØ¹ ÙØ³ØšÙÙØ§ÙØ ÙÙÙ Ø§ÙØŽÙØ±ÙØ· ÙØ°Ø§ عÙÙÙ Ø¹ÙØ¯ ÙÙØ·Ø© Ù
عÙÙÙØ© Ø "
-"اطÙÙØ¹Ùا عÙÙ ØµÙØØ© [ØªØØ±Ù٠اÙÙ
ØŽÙÙØ§Øª](/ar/troubleshooting/) ÙÙÙ
ساعدة ÙÙ ØÙÙ "
-"اÙÙ
ØŽÙÙØ©. "
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -601,53 +607,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"إذا ÙÙØªÙ
تعرÙÙ٠أÙÙ Ø§ØªÙØµØ§ÙÙÙ
Ù
ØØ¬ÙØš Ø£Ù ÙØ³ØªØ®Ø¯Ù
ؚرÙÙØ³ÙØ ÙØ¹ÙÙÙÙ
اÙÙÙÙØ± عÙÙ ÙØ°Ø§ "
-"Ø§ÙØ®Ùار. سÙÙØ¬ÙÙÙÙ
Ù
تصÙÙØ ØªÙØ± (Tor) Ø¥ÙÙ Ø¹Ø¯ÙØ© Ø®ÙØ§Ø±Ø§Øª ÙÙØ¶ØšØ·."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"ستسأÙÙÙ
Ø£ÙÙ٠؎ا؎ة عÙ
ÙØ§ إذا ÙØ§Ù اÙÙØµÙ٠إÙÙ ØŽØšÙØ© Tor Ù
ØØ¬Ùؚا٠أ٠خاضعا٠"
-"ÙÙØ±ÙÙØ§ØšØ© عؚر Ø§ØªÙØµØ§ÙÙÙ
. Ø¥Ù ÙÙØªÙ
ÙØ§ ت؞ÙÙÙ٠ؚأÙÙ ÙØ°Ø§ Ù٠سؚؚ اÙÙ
ØŽÙÙØ©Ø Ø§Ø®ØªØ§Ø±ÙØ§ "
-"âÙØ§â. Ø£Ù
ÙØ§ Ø¥Ù ÙÙØªÙ
تعÙÙ
Ù٠ؚأÙ٠اتصاÙÙÙ
خاضع ÙÙØ±ÙÙØ§ØšØ©Ø Ø£Ù Ø¥Ù ØØ§ÙÙØªÙ
Ø§ÙØ§ØªÙصا٠"
-"ØšØŽØšÙØ© ØªÙØ± ÙÙØŽÙتÙ
Ù٠ذÙÙØ Ø£ÙÙÙ
ØªÙØ¬Ø Ø£ÙÙØ© ØÙÙÙ Ø£Ø®Ø±ÙØ Ø§Ø®ØªØ§Ø±ÙØ§ âÙØ¹Ù
â. Ø¹ÙØ¯Ùا Ø³ÙØªÙ
"
-" ØªÙØ¬ÙÙÙÙ
Ø¥Ù٠؎ا؎ة [ØªØ¬Ø§ÙØ² Ø§ÙØØ¬Øš](/ar/circumvention/) ÙØ¥Ø¹Ø¯Ø§Ø¯ ÙØ§ÙÙ Ù
ÙØµÙÙ. "
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"ستسأÙÙÙ
Ø§ÙØµÙØØ© Ø§ÙØ«Ø§ÙÙØ© عÙ
ÙØ§ إذا ÙØ§Ù Ø§ØªÙØµØ§ÙÙÙ
ÙØ³ØªØ®Ø¯Ù
ÙØ³ÙØ·ÙØ§ (ؚرÙÙØ³Ù). ÙÙ Ø£ØºÙØš"
-" Ø§ÙØØ§ÙØ§ØªØ ÙØ°Ø§ ØºÙØ± Ø¶Ø±ÙØ±Ù. ستعرÙÙÙÙ ÙÙ Ø§ÙØ¹Ø§Ø¯Ø© إذا عÙÙÙÙ
Ø§ÙØ¥Ø¬Ø§ØšØ© Øš âÙØ¹Ù
âØ ÙØ£ÙÙ "
-"Ø§ÙØ¥Ø¹Ø¯Ø§Ø¯Ø§Øª ÙÙØ³Ùا ستÙÙÙ Ù
ستخدÙ
Ø© ÙÙÙ
تصÙÙØØ§Øª Ø§ÙØ£Ø®Ø±Ù عÙÙ Ø¬ÙØ§Ø²ÙÙ
. إ٠أÙ
ÙÙØ Ø§Ø·ÙØšÙا "
-"Ù
ساعدة Ù
س؀ÙÙ Ø§ÙØŽÙØšÙØ©. إذا ÙÙØªÙ
ÙØ§ تستخدÙ
Ù٠ؚرÙÙØ³ÙØ Ø§ÙÙØ±Ùا âØ£ÙÙ
Ùâ. "
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -743,13 +774,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-" جÙ
ÙØ¹ ÙÙØ§ÙÙ meek تجع٠استخداÙ
ÙÙ
Ù Tor ÙØšØ¯Ù ÙÙØ£ÙÙ٠تصÙÙØ ÙÙ
ÙØ§Ùع ÙÙØš ØšØ§Ø±Ø²Ø©. "
-"ÙØ¬Ø¹Ù meek-amazon Ø§ÙØ£Ù
ر ÙØšØ¯Ù ÙÙØ£ÙÙÙ
تتصÙÙØÙÙ Amazon. ÙÙØ¬Ø¹Ù meek-azure Ø§ÙØ£Ù
ر "
-"ÙØšØ¯Ù ÙØ£ÙÙÙ
تستخدÙ
ÙÙ Ù
ÙÙØ¹ Ù Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -788,36 +816,53 @@ msgstr "### استخداÙ
اÙÙÙØ§Ù٠اÙÙ
ÙØµÙÙØ© "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"ÙØ§Ø³ØªØ®Ø¯Ø§Ù
ÙØ§ÙÙ Ù
ÙØµÙÙ ÙØ±Ø¬Ù Ø§ÙØ¶Ùغط عÙ٠ضؚط Ø£Ù 'Configure' Ø¹ÙØ¯ Ø§ÙØšØ¯Ø£ ؚاستخداÙ
"
-"Ù
تصÙÙØ ØªÙØ± (Tor) ÙØ£ÙÙÙ Ù
Ø±ÙØ©. Ù٠اÙÙÙØ§Ùذة Ø§ÙØªÙ Ø³ØªØžÙØ± ÙÙÙ
Ø ÙÙ
٠اÙÙØ§ØŠÙ
Ø© "
-"اÙÙ
ÙØ³Ø¯ÙØ©Ø Ø§Ø®ØªØ§Ø±ÙØ§ Ø£Ù ÙØ§ÙÙ Ù
ÙØµÙÙ ØªÙØ¯ÙÙ٠استخداÙ
Ù. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Ø£ÙØ إذا ÙØ§Ù Ù
تصÙÙØ ØªÙØ± (Tor) ÙÙØ¯ Ø§ÙØªØŽØºÙÙØ اÙÙØ±Ùا عÙÙ Ø§ÙØªÙضÙÙØ§Øª Ø£Ù "
-"'Preferences' ÙÙ ÙØ§ØŠÙ
Ø© اÙÙÙ
ؚرغر ÙÙ
Ù Ø«Ù
٠عÙÙ 'Tor' ÙÙ Ø§ÙØŽØ±ÙØ· Ø§ÙØ¬Ø§ÙØšÙ. ÙÙ ÙØ³Ù
"
-"Ø§ÙØ¬Ø³Ùر Ø£Ù 'Bridges'Ø Ø¶Ø¹ÙØ§ Ø¹ÙØ§Ù
Ø© ØµØ ÙÙ ØµÙØ¯Ù٠استخداÙ
جسر Ø£Ù 'Use a Bridge' Ø "
-"ÙÙ
٠اÙÙØ§ØŠÙ
Ø© اÙÙ
ÙØ³Ø¯ÙØ© Ø§Ø®ØªØ§Ø±ÙØ§ جسرا٠Ù
دÙ
جا٠'Select a built-in bridge'Ø "
-"ÙØ§Ø®ØªØ§Ø±Ùا Ø£Ù ÙØ§ÙÙ Ù
ÙØµÙÙ ØªÙØ¯ÙÙ٠استخداÙ
Ù. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"ؚعد Ø§Ø®ØªÙØ§Ø±ÙÙ
ÙÙÙØ§Ù٠اÙÙ
ÙØµÙÙ Ø§ÙØ°Ù ØªÙØ¯ÙÙÙ Ø§Ø®ØªÙØ§Ø±ÙØ Ø§ÙÙØ±Ùا عÙ٠زر Ø§ÙØ§ØªØµØ§Ù Ø£Ù "
-"'Connect' ÙØÙØž إعداداتÙÙ
. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -837,28 +882,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"إذا ÙÙØªÙ
ØªØØ§ÙÙÙÙ ØªØ¬Ø§ÙØ² اتصا٠Ù
ØØ¬ÙØš ÙØ£ÙÙÙ Ù
Ø±ÙØ©Ø عÙÙÙÙ
تجرؚة اÙÙÙØ§Ù٠اÙÙ
ختÙÙØ©:"
-" obfs4 Ø snowflakeØ Ù meek-azure. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"إذا ØØ§ÙÙØªÙ
جÙ
ÙØ¹ ÙØ°Ù Ø§ÙØ®Ùارات ÙÙÙ
ØªÙØ¬Ø Ø£ÙÙ Ù
ÙÙØ§ ÙÙ ÙØµÙÙÙ
عÙÙ Ø§ÙØ§ÙØªØ±ÙØªØ "
-"Ø³ØªØØªØ§Ø¬Ù٠إÙÙ Ø¥Ø¯Ø®Ø§Ù Ø¹ÙØ§ÙÙÙ Ø§ÙØ¬Ø³Ø± ÙØ¯ÙÙÙØ§Ù. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Ø§ÙØ±Ø€Ùا ÙØ³Ù
 [Ø§ÙØ¬Ø³Ùر](/ar/bridges/) ÙÙØªØ¹Ø±Ù٠عÙÙ Ù
اÙÙÙØ© Ø§ÙØ¬Ø³Ùر ÙÙÙÙ ÙÙ
ÙÙ "
-"Ø§ÙØØµÙ٠عÙÙÙØ§. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -952,40 +991,46 @@ msgstr "### استخداÙ
MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"اذا ÙÙØª ستؚدأ Ù٠استخداÙ
Ù
تصÙÙØ ØªÙØ± (Tor) ÙÙÙ
رة Ø§ÙØ£ÙÙÙØ Ø§Ø¶ØºØ·ÙØ§ عÙ٠ضؚط Ø£Ù "
-"'Configure' ÙÙØªØ ÙØ§Ùذة إعدادات ØŽØšÙØ© Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"اذا ÙÙ
تÙÙ ÙØ°ÙÙØ اضعط عÙÙ 'اعدادات Preferences' Ù٠اÙÙØ§ØŠÙ
Ø© Ø§ÙØ±ØŠÙØ³ÙØ© Ø«Ù
عÙÙ "
-"'ØªÙØ± Tor' ÙÙ Ø§ÙØŽØ±ÙØ· Ø§ÙØ¬Ø§ÙØšÙ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"ÙÙ ÙØ§Ùذة إعدادات TorØ Ø§Ø®ØªØ± 'ØªÙØ± Ù
Ø±Ø§ÙØš ÙÙ ØšÙØ¯Ù Tor is censored in my "
-"country.'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr "Ø«Ù
Ù Ø§Ø®ØªØ§Ø±ÙØ§ 'Ø·ÙØš Ø¬Ø³Ø± Ù
Ù torproject.org' ÙØ§ÙÙØ±Ùا 'Ø·ÙØš Ø¬Ø³Ø± ...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Ø£ÙÙ
Ù٠ا٠CAPTCHA ٠اضعط عÙÙ 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1011,23 +1056,23 @@ msgstr "ؚعد ØØµÙÙ٠عÙÙ Ø¹ÙØ§ÙÙÙ Ø§ÙØ¬Ø³ÙØ±Ø Ø³ÙÙÙ٠عÙÙÙ
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"إذا ÙÙØªÙ
تستخدÙ
ÙÙ Ù
تصÙÙØ ØªÙØ± (Tor) ÙØ£ÙÙÙ Ù
Ø±ÙØ©Ø Ø§Ø¶ØºØ·ÙØ§ 'إعداد' ÙÙØªØ ØŽØšÙØ§Ù "
-"إعدادات ØŽØšÙØ© Tor. Ø£ÙØ اÙÙØ±Ùا 'Ø§ÙØªÙضÙÙØ§Øª' Ù٠اÙÙØ§ØŠÙ
Ø© Ø§ÙØ±ÙØŠÙØ³ÙÙØ© ÙÙ
Ù Ø«Ù
Ù ÙÙ "
-"ØŽØ±ÙØ· 'Tor' Ø§ÙØ¬Ø§ÙØšÙ ÙÙÙØµÙÙ ÙÙØ°Ù Ø§ÙØ®Ùارات. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"ÙÙ ÙØ³Ù
'Ø§ÙØ¬Ø³Ùر Bridges'Ø Ø¶Ø¹ Ø¹ÙØ§Ù
Ø© عÙÙ 'استخدÙ
جسر Use a bridge' Ø«Ù
إختر "
-"'سأضع جسرا أعرÙÙ Provide a bridge I know' ٠أدخ٠عÙÙØ§Ù Ù٠جسر عÙ٠سطر Ù
ÙÙØµÙ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1631,6 +1676,8 @@ msgstr "ÙÙÙÙØ© ØªØØ¯ÙØ« Ù
تصÙÙØ ØªÙØ± (Tor)"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1813,6 +1860,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ÙØ¶Ø§Ùا Ù
عرÙÙØ© "
@@ -2190,6 +2239,806 @@ msgstr ""
"*ØšØ±ÙØªÙÙÙÙ Ù
ØŽØ§Ø±ÙØ© اÙÙ
ÙÙØ§Øª عؚر Ø§ÙØ§ÙØªØ±ÙØª Ù
ØØ¯Ùد [ÙØ§ ÙØªÙسÙ
ؚاÙÙ
جÙÙÙÙÙØ© عؚر "
"ØªÙØ±](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2329,13 +3178,13 @@ msgstr "تؚرع Ø§ÙØ¢Ù"
msgid "Give today, and Mozilla will match your donation."
msgstr "تؚرع اÙÙÙÙ
Ø ÙØ³ØªØ¬Ø§Ø±ÙÙ Ù
ÙØ²ÙÙØ§ ÙØªØšØ±Ø¹ ØšÙÙØ³ اÙÙ
ØšÙØº."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "ØªÙØ²ÙÙ Ù
تصÙÙØ ØªÙØ± (Tor)"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2343,11 +3192,11 @@ msgstr ""
"ÙØ²ÙÙÙØ§ Ù
تصÙÙØ ØªÙØ± (Tor) ÙØªØ®ØªØšØ±Ùا Ø§ÙØªØµÙÙØ Ø§ÙØ®Ø§Øµ ÙØ¹ÙÙÙØ§Ù ؚدÙÙ ØªØªØšÙØ¹ Ø£Ù Ù
Ø±Ø§ÙØšØ© "
"Ø£Ù Ø±ÙØ§ØšØ©."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Ù
ÙÙÙ
ÙØªÙا:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2358,33 +3207,33 @@ msgstr ""
"Ù
Ø¬ÙØ§ÙÙÙØ© ÙÙ
ÙØªÙØØ© اÙÙ
ØµØ¯Ø±Ø Ù
Ù
ÙØ§ ÙØ¬Ø¹ÙÙØ§ Ù
ØªØ§ØØ© ÙÙØ§Ø³ØªØ®Ø¯Ø§Ù
ؚدÙÙ ÙÙÙØ¯Ø ÙÙØ°Ù٠تطÙÙØ± "
"Ø§ÙØ¥Ø¯Ø±Ø§Ù Ø§ÙØ¹ÙÙ
Ù ÙØ§ÙعاÙ
ÙÙØ°Ù Ø§ÙØªÙÙÙØ§Øª. "
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ØªØšØ±ÙØ¹"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "تؚرع Ø§ÙØ¢Ù"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ا؎تر٠ÙÙ Ø±Ø³Ø§ÙØªÙا ÙÙÙ
ستجدات"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Ø§ØØµÙ عÙÙ ØªØØ¯Ùثات ØŽÙØ±ÙØ© ÙÙØ±Øµ Ù
Ù Ù
ØŽØ±ÙØ¹ ØªÙØ±:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Ø³Ø¬Ù ØØ³Ø§Øš"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+bg.po b/contents+bg.po
index 32af7131f1..62d6d014ed 100644
--- a/contents+bg.po
+++ b/contents+bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Emma Peel, 2019\n"
"Language-Team: Bulgarian (https://www.transifex.com/otf/teams/1519/bg/)\n"
@@ -78,8 +78,8 @@ msgstr "ÐзÑеглÑМе"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "ÐÑÑкаМе Ма Tor бÑаÑзÑÑа за пÑÑвО пÑÑ"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "ÐÑОЎжПве"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "УпÑавлеМОе Ñа ÑаЌПлОÑМПÑÑО"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,12 +145,19 @@ msgstr "ÐзвеÑÑМО пÑПблеЌО"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -519,6 +526,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -534,7 +543,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -551,43 +560,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"ÐкП зМаеÑе, Ñе вÑÑзкаÑа е ÑеМзÑÑОÑаМа, ОлО ОзпПлзваÑе пÑПкÑО, Ñе Ñе МалПжО "
-"Ўа ОзбеÑеÑе ÑазО ПпÑОÑ. Tor бÑаÑзÑÑÑÑ Ñе вО пÑевеЎе пÑез ÑеÑÐžÑ ÐŸÑ ÐŸÐ¿ÑОО за "
-"МаÑÑÑПйкО."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"СлеЎваÑОÑÑ ÐµÐºÑаМ Ñе вО пОÑа ЎалО вÑÑзкаÑа ÐО ОзпПлзва пÑПкÑО. РпПвеÑеÑП "
-"ÑлÑÑаО ÑПва Ме е Ñака. ÐбОкМПвеМП Ñе зМаеÑе ЎалО ÑÑÑбва Ўа ПÑгПвПÑОÑе Ñ "
-"\"Ðа\", ÑÑй каÑП Май-веÑПÑÑМП веÑе ÑÑе залПжОлО пПЎПбМО ÑÑÑМО МаÑÑÑПйкО в "
-"ÐŽÑÑгО бÑаÑзÑÑО Ма ÑÑÑÑПйÑÑвПÑП. ÐкП е вÑзЌПжМП пПОÑкайÑе ÑÑÐ²ÐµÑ ÐŸÑ ÑОÑÑÐµÐŒÐœÐžÑ "
-"ÑО аЎЌОМОÑÑÑаÑПÑ. ÐкП вÑÑзкаÑа Ме ОзпПлзва пÑПкÑО МаÑОÑМеÑе \"ÐапÑеЎ\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -595,6 +613,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -682,9 +719,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -722,25 +759,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -759,21 +823,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -858,33 +922,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -911,17 +987,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1458,6 +1539,8 @@ msgstr "Ðак Ўа ПбМПвОÑе Tor бÑаÑзÑÑа"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1622,6 +1705,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1955,6 +2040,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2074,23 +2959,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr ""
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr ""
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2098,33 +2983,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ÐаÑеÑе"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr ""
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "РегОÑÑÑОаМе"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+bn.po b/contents+bn.po
index a700003794..83fbd5e898 100644
--- a/contents+bn.po
+++ b/contents+bn.po
@@ -1,18 +1,18 @@
# Translators:
# code smite <codesmite(a)gmail.com>, 2018
-# erinm, 2019
# Tabiha Tanha <tabihatanha(a)yandex.com>, 2019
# Rakibul Hasan <hk590984(a)gmail.com>, 2019
# Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2019
# Emma Peel, 2020
+# erinm, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: erinm, 2020\n"
"Language-Team: Bengali (https://www.transifex.com/otf/teams/1519/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -81,8 +81,8 @@ msgstr "àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠ¹àŠà§àŠà§"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° àŠ°àŠŸàŠš àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -101,8 +101,8 @@ msgstr "àŠ¬à§àŠ°àŠ¿àŠ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "àŠžàŠšàŠŸàŠà§àŠ€àŠàŠ°àŠ£ àŠªàŠ°àŠ¿àŠàŠŸàŠ²àŠšàŠŸ"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -148,13 +148,20 @@ msgstr "àŠà§àŠàŠŸàŠ€ àŠžàŠ®àŠžà§àŠ¯àŠŸ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "àŠàŠàŠàŠš àŠàа àŠ
àŠšà§àŠ¬àŠŸàŠŠàŠ àŠ¹àŠš"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor Browser àŠà§ àŠªà§àаà§àŠà§àŠ¬àŠ² àŠ¬àŠŸàŠšàŠŸàŠšà§"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -572,6 +579,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -591,11 +600,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠ€à§àŠ²àŠšàŠŸàŠ®à§àвàŠàŠàŠŸàŠ¬à§ àŠŠà§àаà§àŠ€ àŠžàŠàНà§àŠà§ àŠ¥àŠŸàŠà§àŠš àŠ€àŠ¬à§ àŠàŠ àŠ¬àŠŸàŠ°àŠàŠ¿ àŠàŠàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠŠàŠ¿àŠ·à§àŠ àŠžàŠ®àŠ¯àŠŒà§ àŠàŠàŠàŠŸ àŠªàŠ¡àŠŒà§àŠà§ àŠ¬àŠ²à§ àŠ®àŠšà§ àŠ¹àŠà§àŠà§, àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠžàŠ®àŠŸàŠ§àŠŸàŠšà§ àŠžàŠ¹àŠŸàŠ¯àŠŒàŠ€àŠŸàŠ° àŠàŠšà§àН [Troubleshooting](/bn/troubleshooting) àŠªà§àŠ·à§àŠ àŠŸàŠàŠ¿ àŠŠà§àŠà§àŠšà¥€\n"
-"Â "
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -610,58 +617,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠŸàŠšà§àŠš àŠ¯à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ, àŠ¬àŠŸ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§, àŠàŠªàŠšàŠ¿ "
-"àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠàŠ¿ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€à¥€ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠš àŠ¬àŠ¿àŠàвà§àŠªàŠà§àŠ²àŠ¿àŠ° àŠàŠàŠàŠ¿ àŠžàŠ¿àŠ°àŠ¿àŠ"
-" àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠàŠªàŠšàŠŸàŠà§ àŠšàŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"àŠªà§àŠ°àŠ¥àŠ® àŠžà§àŠà§àŠ°àŠ¿àŠšàŠàŠ¿ àŠàŠ¿àŠà§àŠà§àŠž àŠàŠ°à§ àŠ¯à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠà§ Tor network àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠ
àŠ¬àŠ°à§àŠŠà§àЧ àŠ¬àŠŸ"
-" àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§ àŠàŠ¿àŠšàŠŸà¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠ¬àŠ¿àŠ¶à§àŠ¬àŠŸàŠž àŠàаà§àŠš àŠšàŠŸ àŠ¯à§ àŠàŠàŠ¿ àŠà§àŠ·à§àŠ€à§àаà§, àŠ€àŠ¬à§ "
-"\"No\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠàŠŸàŠšà§àŠš àŠ¯à§ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠàŠàŠ¿ àŠžà§àŠšà§àŠžàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§, àŠ¬àŠŸ "
-"àŠàŠªàŠšàŠ¿ àŠà§àа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠà§àа àŠžàŠŸàŠ¥à§ àŠžàŠàНà§àŠ àŠžà§àŠ¥àŠŸàŠªàŠšà§àа àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠà§àŠš àŠàŠ¬àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§àŠš "
-"àŠàŠ¬àŠ àŠ
àŠšà§àН àŠà§àŠšàŠ àŠžàŠ®àŠŸàŠ§àŠŸàŠš àŠàŠŸàŠ àŠàаà§àŠšàŠ¿, àŠ€àŠ¬à§ \"àŠ¹à§àŠ¯àŠŸàŠ\" àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€ àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠàŠªàŠšàŠŸàŠà§ "
-"àŠªà§àŠ²àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН [Circumvention](/bn/circumvention) "
-"àŠžà§àŠà§àŠ°àŠ¿àŠšà§ àŠšàŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠàŠ¯àŠŒàŠŸ àŠ¹àŠ¬à§à¥€"
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠàŠàŠàŠ¿ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°à§ àŠªàŠ°à§àа àŠžà§àŠà§àŠ°àŠ¿àŠš àŠàŠ¿àŠà§àŠà§àŠž àŠàаà§à¥€ àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ "
-"àŠà§àŠ·à§àŠ€à§àаà§, àŠàŠàŠ¿ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒ àŠšàŠ¯àŠŒà¥€ àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ \"àŠ¹à§àŠ¯àŠŸàŠ\" àŠàŠ€à§àŠ€àŠ° àŠŠàŠ¿àŠ€à§ àŠàŠŸàŠš àŠ€àŠ¬à§ àŠàŠªàŠšàŠ¿ "
-"àŠžàŠŸàŠ§àŠŸàŠ°àŠ£àŠ€ àŠàŠŸàŠšàŠ€à§ àŠªàŠŸàŠ°àŠ¬à§àŠš, àŠàŠàŠ àŠžà§àŠàŠ¿àŠàŠž àŠàŠªàŠšàŠŸàŠ° àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠàŠšà§àН "
-"àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¬à§à¥€ àŠ¯àŠŠàŠ¿ àŠžàŠ®à§àŠàЬ àŠ¹àŠ¯àŠŒ àŠ€àŠŸàŠ¹àŠ²à§, àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠ¿àŠàŠŸàŠàŠ¿àŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ "
-"àŠªà§àŠ°àŠ¶àŠŸàŠžàŠà§àа àŠàŠŸàŠà§ àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠàаà§àŠšà¥€ àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠžàŠàНà§àŠ àŠà§àŠšàŠ àŠªà§àаàŠà§àŠžàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠšàŠŸ àŠàаà§, "
-"\"àŠ
àŠ¬àŠ¿àŠ°àŠ€\" àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -757,12 +784,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"àŠšàŠ®à§àа àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠà§àŠ²àŠ¿ àŠàŠàŠ¿àŠà§ àŠŠà§àŠà§ àŠ®àŠšà§ àŠ¹àŠà§àŠà§ àŠàŠªàŠšàŠ¿ Tor Browser àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°à§àа àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€à§ àŠà§àŠšàŠ àŠªà§àŠ°àŠ§àŠŸàŠš àŠàŠ¯àŠŒà§àЬ àŠžàŠŸàŠàŠ àŠ¬à§àŠ°àŠŸàŠàŠ àŠàаàŠà§àŠšà¥€ àŠ®à§àŠ-àŠàŠàŠà§àа àŠàŠàŠ¿àŠà§ àŠàŠ®àŠš àŠŠà§àŠàŠŸàŠà§àŠà§ àŠ¯à§ àŠàŠªàŠšàŠ¿ àŠà§àŠšàŠ àŠ®àŠŸàŠàŠà§àаà§àŠžàŠ«à§àŠ àŠàŠ¯àŠŒà§àЬ àŠžàŠŸàŠàŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠšà¥€\n"
-"Â "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -801,32 +826,53 @@ msgstr "### àŠªà§àŠ²àŠŸàŠàв àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠàŠž àŠ¬à§àН
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"àŠªà§àŠ²àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§, àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° Tor Browser àŠ¶à§àŠ°à§ àŠàŠ°àŠŸàŠ° àŠžàŠ®àŠ¯àŠŒ 'àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàаà§àŠš' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€ àŠ¡à§àŠ°àŠª-àŠ¡àŠŸàŠàŠš àŠ®à§àŠšà§ àŠ¥à§àŠà§ àŠªà§àŠ°àŠŠàŠ°à§àŠ¶àŠ¿àŠ€ àŠàŠàŠšà§àŠ¡à§àŠ€à§, àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠà§àŠšàŠ àŠªà§àŠ²àŠŸàŠàНà§àŠà§àН àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠàŠŸàŠš àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€\n"
-"Â "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
msgstr ""
-"àŠ
àŠ¥àŠ¬àŠŸ, àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° Tor Browser àŠàŠ²àŠ®àŠŸàŠš àŠ¥àŠŸàŠà§ àŠ€àŠ¬à§ àŠ¹à§àŠ¯àŠŸàŠ®àŠ¬àŠŸàŠ°à§àŠàŠŸàŠ° àŠ®à§àŠšà§àŠ€à§ 'Preferences' àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš àŠàŠ¬àŠ àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠžàŠŸàŠàŠ¡àŠ¬àŠŸàŠ°à§àа 'Tor' in the sidebar' àŠžà§àŠ€à§' àŠ¬àŠ¿àŠàŠŸàŠà§, ''Use a bridge', àŠ¬àŠà§àŠžàŠàŠ¿ àŠà§àŠ àŠàаà§àŠš àŠàŠ¬àŠ àŠ¡à§àŠ°àŠª-àŠ¡àŠŸàŠàŠš àŠ®à§àŠšà§ àŠ¥à§àŠà§ 'àŠàŠàŠàŠ¿ àŠ¬àŠ¿àŠ²à§àŠ-àŠàŠš àŠ¬à§àŠ°àŠ¿àŠ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš', àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠà§àŠšàŠ àŠªà§àŠ²àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠàŠŸàŠš àŠ€àŠŸ àŠàŠ¯àŠŒàŠš àŠàаà§àŠš r àŠ
àŠ¥àŠ¬àŠŸ, àŠàŠªàŠšàŠŸàŠ° àŠ¯àŠŠàŠ¿ àŠà§àа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠ²àŠ®àŠŸàŠš àŠ¥àŠŸàŠà§ , àŠ¹à§àŠ¯àŠŸàŠ®àŠ¬àŠŸàŠ°à§àŠàŠŸàŠ° àŠ®à§àŠšà§àŠ€à§ 'àŠªàŠàŠšà§àŠŠàŠžàŠ®à§àй' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš àŠàŠ¬àŠ àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠªàŠŸàŠ¶à§àа àŠ¬àŠŸàŠ°à§ 'àŠà§àа' àŠ àŠà§
àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€ 'àŠžà§àŠ€à§' àŠ¬àŠ¿àŠàŠŸàŠà§, 'Select a built-in bridge', àŠ¬àŠà§àŠžàŠàŠ¿ àŠà§àŠ àŠàаà§àŠš àŠàŠ¬àŠ àŠ¡à§àŠ°àŠª-àŠ¡àŠŸàŠàŠš àŠ®à§àŠšà§ àŠ¥à§àŠà§ 'àŠàŠàŠàŠ¿ àŠ¬àŠ¿àŠ²à§àŠ-àŠàŠš àŠ¬à§àŠ°àŠ¿àŠ àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš', àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠà§àŠšàŠ àŠªà§àŠ²àŠŸàŠàНà§àŠà§àН àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠàŠŸàŠš àŠ€àŠŸ àŠàŠ¯àŠŒàŠš àŠàаà§àŠšà¥€\n"
-"Â "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"àŠàŠàŠ¬àŠŸàŠ° àŠàŠªàŠšàŠ¿ àŠ¯à§ àŠªà§àŠ²àŠŸàŠà§àŠ¬àŠ² àŠà§àŠ°àŠŸàŠšà§àŠžàŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠ€à§ àŠàŠŸàŠš àŠ€àŠŸ àŠàŠ¯àŠŒàŠš àŠàŠ°àŠŸàŠ° àŠªàŠ°à§, àŠàŠªàŠšàŠŸàŠ°"
-" àŠžà§àŠàŠ¿àŠàŠž àŠžàŠàаàŠà§àŠ·àŠ£ àŠàŠ°àŠ€à§ 'àŠžàŠàНà§àŠà§àŠ€ àŠàаà§àŠš' àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -846,28 +892,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ°à§àа àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠ
àŠ¬àŠ°à§àŠŠà§àЧ àŠžàŠàНà§àŠàŠàŠ¿ àŠ¬àŠ¿àŠà§àŠšàŠ¿àŠ€ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаàŠà§àŠš, àŠ€àŠ¬à§ àŠàŠªàŠšàŠŸàŠà§ àŠ¬àŠ¿àŠàŠ¿àŠšà§àŠš àŠªàŠ°àŠ¿àŠ¬àŠ¹àŠšàŠà§àŠ²àŠ¿ àŠà§àŠ·à§àŠàŠŸ àŠàŠ°àŠŸ àŠàŠàŠ¿àŠ€: obfs4, àŠ€à§àŠ·àŠŸàŠ°àŠ«àŠ² àŠàŠ¬àŠ àŠ®à§àŠš-àŠ
à§àŠ¯àŠŸàŠà§àŠ°àŠ¿à¥€\n"
-"Â "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠ
àŠªàŠ¶àŠšà§àа àŠà§àŠ·à§àŠàŠŸ àŠàŠ°à§ àŠ¥àŠŸàŠà§àŠš àŠàŠ¬àŠ àŠžà§àŠà§àŠ²àŠ¿àŠ° àŠà§àŠšàŠàŠàŠ¿àŠ àŠàŠªàŠšàŠŸàŠà§ àŠ
àŠšàŠ²àŠŸàŠàŠšà§ àŠšàŠŸ àŠªà§àŠ¯àŠŒà§ àŠàŠªàŠšàŠŸàŠà§ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²àŠ¿ àŠ¬à§àŠ°àŠ¿àŠà§àа àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àŠ°àŠ¬à§àж àŠàŠ°àŠ€à§ àŠ¹àŠ¬à§à¥€\n"
-"Â "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"àŠ¬à§àŠ°àŠ¿àŠ àŠà§ àŠàŠ¬àŠ àŠà§àŠàŠŸàŠ¬à§ àŠ¥àŠŸàŠ®àŠŸàŠšà§ àŠ¯àŠŸàŠ¯àŠŒ àŠ€àŠŸ àŠ¶àŠ¿àŠàŠ€à§ Read the [Bridges](/bn/bridges/) "
-"àŠ¬àŠ¿àŠàŠŸàŠà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -965,41 +1005,46 @@ msgstr "### MOAT àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° Tor Browser àŠàŠ¿ àŠ¶à§àŠ°à§ àŠàаà§àŠš, Tor Network Settings àŠàŠàŠšà§àŠ¡à§àŠàŠ¿ "
-"àŠà§àŠ²àŠ€à§ 'àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàаà§àŠš' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"àŠ
àŠšà§àŠ¯àŠ¥àŠŸàŠ¯àŠŒ, àŠ¹à§àŠ¯àŠŸàŠ®àŠ¬àŠŸàŠ°à§àŠàŠŸàŠ° àŠ®à§àŠšà§àŠ€à§ (àŠªà§àŠ°àŠ§àŠŸàŠš àŠ®à§àŠšà§) 'Preferences' àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš àŠàŠ¬àŠ "
-"àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠžàŠŸàŠàŠ¡àŠ¬àŠŸàŠ°à§àа 'Tor' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Tor Network àŠžà§àŠàŠ¿àŠàŠž àŠàŠàŠšà§àŠ¡à§àŠ€à§,'Tor is censored in my country.'àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
msgstr ""
-"àŠ€àŠŸàŠ°àŠªàŠ°à§, 'Request a bridge from torproject.org' àŠ¥à§àŠà§ àŠàŠàŠàŠ¿ àŠ¬à§àŠ°àŠ¿àŠà§àа àŠ
àŠšà§àаà§àЧ "
-"àŠàаà§àŠš' àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš àŠàŠ¬àŠ 'Request a bridge...' àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠš"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "àŠà§àŠ¯àŠŸàŠªàŠàŠŸ àŠžàŠ®à§àŠªà§àаà§àŠ£ àŠàаà§àŠš àŠàŠ¬àŠ 'àŠàŠ®àŠŸ àŠŠàŠ¿àŠš' àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1027,24 +1072,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"àŠàŠªàŠšàŠ¿ àŠ¯àŠŠàŠ¿ àŠªà§àŠ°àŠ¥àŠ®àŠ¬àŠŸàŠ° Tor Browser àŠ¶à§àŠ°à§ àŠàаà§àŠš, àŠà§àа àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžà§àŠàŠ¿àŠàŠž àŠàŠàŠšà§àŠ¡à§àŠàŠ¿ "
-"àŠà§àŠ²àŠ€à§ 'Configure' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€ àŠ
àŠšà§àŠ¯àŠ¥àŠŸàŠ¯àŠŒ, àŠàŠ àŠ¬àŠ¿àŠàвà§àŠªàŠà§àŠ²àŠ¿ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ°àŠ€à§ "
-"àŠ¹à§àŠ¯àŠŸàŠ®àŠ¬àŠŸàŠ°à§àŠàŠŸàŠ° àŠ®à§àŠšà§àŠ€à§ (àŠªà§àŠ°àŠ§àŠŸàŠš àŠ®à§àŠšà§) àŠàŠ¬àŠ àŠ€àŠŸàŠ°àŠªàŠ°à§ àŠžàŠŸàŠàŠ¡àŠ¬àŠŸàŠ°à§àа 'Tor' àŠ àŠà§àŠ²àŠ¿àŠ àŠàаà§àŠšà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"'Bridges' section, àŠ 'Use a bridge', àŠ¬àŠŸàŠà§àŠžàŠàŠ¿ àŠà§àŠ àŠàаà§àŠš, àŠ€àŠŸàŠ°àŠªàŠ°à§, 'àŠàŠ®àŠ¿ àŠàŠŸàŠšàŠ¿ "
-"àŠàŠàŠàŠ¿ àŠžà§àŠ€à§ àŠžàŠ°àŠ¬àŠ°àŠŸàŠ¹ àŠàаà§àŠš' àŠšàŠ¿àŠ°à§àŠ¬àŠŸàŠàŠš àŠàаà§àŠš àŠàŠ¬àŠ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠžà§àŠ€à§àа àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠàŠàŠàŠ¿ àŠªà§àŠ¥àŠ "
-"àŠ²àŠŸàŠàŠšà§ àŠªà§àŠ°àŠ¬à§àж àŠàŠ°àŠŸàŠšà¥€"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1626,6 +1670,8 @@ msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠªàŠ¡à§àŠ àŠàŠ¿àŠàŠŸàŠ¬à§"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1811,6 +1857,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "##### àŠà§àŠàŠŸàŠ€ àŠžàŠ®àŠžà§àŠ¯àŠŸ"
@@ -2189,6 +2237,816 @@ msgstr ""
"* àŠšàŠ¿àŠ°à§àŠŠàŠ¿àŠ·à§àŠàŠàŠŸàŠ¬à§ BitTorrent àŠ¹'àŠ² [not anonymous over "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)ी"
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"àŠ¬à§àŠ°àŠ¿àŠ relays àŠ¹àŠ² àŠàа relays àŠ¯àŠŸ àŠžàŠ°à§àЬàŠàŠšà§àŠš àŠàа àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠ¿àŠàŠŸàŠ¯àŠŒ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠà§àŠà§àŠ€ àŠšàŠ¯àŠŒ ी"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"àŠ¬à§àŠ°àŠ¿àŠàŠàŠ¿ àŠ
àŠ€à§àŠ¯àŠŸàŠàŠŸàŠ°à§ àŠ¶àŠŸàŠžàŠàŠŠà§àа àŠ
àŠ§à§àŠšà§ àŠ¥àŠŸàŠàŠŸ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àŠŠà§àа àŠàŠšà§àН àŠàŠªàŠàŠŸàŠ°à§, àŠàŠ¬àŠ àŠ¯àŠŸàŠ°àŠŸ "
+"àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸàŠ° àŠàŠàŠàŠ¿ àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžà§àŠ€àŠ° àŠàŠŸàŠš àŠ€àŠŸàŠŠà§àа àŠàŠšà§àН àŠàŠ àŠžà§àŠ€à§àŠàŠ¿ àŠ€àŠŸàŠ°àŠŸ àŠàŠŸàŠšàŠ€à§ àŠªàŠŸàŠ°àŠ¬à§ àŠ¯à§ "
+"àŠ€àŠŸàŠ°àŠŸ àŠàŠàŠàŠ¿ àŠžàŠ°à§àЬàŠàŠšà§àŠš àŠàа àŠ°àŠ¿àŠ²à§ IP àŠ àŠ¿àŠàŠŸàŠšàŠŸàŠ° àŠžàŠŸàŠ¥à§ àŠ¯à§àŠàŠŸàŠ¯à§àŠ àŠàаàŠà§ ी"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"àŠàŠ®àŠ°àŠŸ àŠàŠàŠàŠ¿ àŠàŠàŠàŠàŠž àŠ
à§àŠ¯àŠŸàŠª àŠšàŠŸàŠ®à§ àŠàŠàŠàŠ¿ iOS àŠ
à§àŠ¯àŠŸàŠªà§àа àŠžà§àŠªàŠŸàŠ°àŠ¿àŠ¶ àŠàŠ°àŠ¿, àŠ¯àŠŸ àŠàŠªà§àŠš àŠžà§àаà§àŠž, àŠàа "
+"àŠžàŠ®àŠšà§àŠ¬àŠ¯àŠŒàŠàŠ°àŠ£ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§, àŠàŠ¬àŠ àŠàŠ®àŠš àŠàŠàŠàŠšà§àа àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠ¬àŠ¿àŠàŠ¶àŠ¿àŠ€ àŠ¹àŠ¯àŠŒ àŠ¯àŠŸàŠ°àŠŸ àŠàа àŠªà§àаàŠàвà§àŠªà§àа "
+"àŠžàŠŸàŠ¥à§ àŠàŠšàŠ¿àŠ·à§àŠ àŠàŠŸàŠ¬à§ àŠàŠŸàŠ àŠàŠ°à§ à¥€"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"àŠ€àŠ¬à§ àŠ
à§àŠ¯àŠŸàŠªàŠ²à§àа àŠàŠšà§àН àŠàŠàŠàŠàŠž-àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš, àŠ¯àŠŸ Webkit àŠšàŠŸàŠ®à§ àŠàŠ¿àŠà§ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° "
+"àŠàŠ°àŠ€à§ àŠàŠŸàŠ¯àŠŒ, àŠ¯àŠŸ àŠ¥à§àŠà§ àŠªà§àŠàŠ¯àŠŒàŠŸàŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°àŠà§ àŠàŠàŠ àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠ°àŠà§àŠ·àŠŸ àŠàŠ°à§ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° "
+"àŠ¹àŠ¿àŠžà§àŠ¬à§ à¥€"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "àŠ¬àŠ°à§àŠ€àŠ®àŠŸàŠšà§ àŠàŠàŠšà§àŠ¡à§àŠ àŠ«à§àŠšà§àа àŠàаà§àŠà§ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН àŠà§àŠš àŠžàŠ®àŠ°à§àŠ¥àŠ¿àŠ€ àŠªàŠŠà§àŠ§àŠ€àŠ¿ àŠšà§àŠà¥€"
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2333,13 +3191,13 @@ msgstr "àŠàŠàŠšàŠ¿ àŠŠàŠŸàŠš àŠàаà§"
msgid "Give today, and Mozilla will match your donation."
msgstr "àŠ
àŠ°à§àŠ¥ àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠàаà§àŠš, àŠàŠ¬àŠ àŠ®àŠàŠ¿àŠ²àŠŸ àŠžàŠ®àŠªàŠ°àŠ¿àŠ®àŠŸàŠ£ àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠàŠ°àŠ¬à§à¥€ "
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàаà§àŠš"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2347,11 +3205,11 @@ msgstr ""
"àŠà§àаà§àŠ¯àŠŸàŠ, àŠšàŠàŠ°àŠŠàŠŸàŠ°àŠ¿ àŠ¬àŠŸ àŠžà§àŠšà§àŠžàŠ°àŠ¶àŠ¿àŠª àŠàŠŸàŠ¡àŠŒàŠŸàŠ àŠ¬àŠŸàŠžà§àŠ€àŠ¬ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠ¿àŠàŠ¯àŠŒà§àа àŠ
àŠàŠ¿àŠà§àŠàŠ€àŠŸ "
"àŠªà§àŠ€à§ Tor Browser àŠàŠ¿ àŠ¡àŠŸàŠàŠšàŠ²à§àŠ¡ àŠàаà§àŠšà¥€"
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "àŠàŠ®àŠŸàŠŠà§àа àŠ²àŠà§àŠ·à§àН:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2363,33 +3221,33 @@ msgstr ""
"àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠ®àŠŸàŠšàŠ¬àŠŸàŠ§àŠ¿àŠàŠŸàŠ° àŠàŠ¬àŠ àŠžà§àŠ¬àŠŸàŠ§à§àŠšàŠ€àŠŸàŠà§ àŠ«àŠ¿àŠ°àŠ¿àŠ¯àŠŒà§ àŠàŠšàŠ€à§ àŠàŠ¬àŠ àŠ€àŠŸàŠŠà§àа àŠ®àŠŸàŠšàŠ¬àŠŸàŠ§àŠ¿àŠàŠŸàŠ° àŠ "
"àŠžà§àŠ¬àŠŸàŠ§à§àŠšàŠ€àŠŸàŠ¯àŠŒ àŠ¹àŠžà§àŠ€àŠà§àŠ·à§àŠª àŠàŠ°àŠŸ ी"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "àŠ¡àŠšà§àŠ àŠàаà§àŠš"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "àŠàŠà§àŠšàŠ¿ àŠŠàŠŸàŠš àŠàаà§àŠš! "
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "àŠàŠ®àŠŸàŠŠà§àа àŠšàŠ¿àŠàŠàвà§àŠàŠŸàŠ° àŠžàŠŸàŠ¬àŠžà§àŠà§àŠ°àŠŸàŠàЬ àŠàаà§àŠš"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "àŠàа àŠªà§àаàŠàвà§àŠª àŠ¥à§àŠà§ àŠ®àŠŸàŠžàŠ¿àŠ àŠàŠªàŠ¡à§àŠ àŠàŠ¬àŠ àŠžà§àНà§àŠ àŠªàŠŸàŠš:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "àŠžàŠŸàŠàŠš àŠàŠª"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ca.po b/contents+ca.po
index 3e67769c51..1b9493d74b 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -1,21 +1,21 @@
# Translators:
# Jordi Serratosa <jordis(a)softcatala.cat>, 2019
# Benny Beat <bennybeat(a)gmail.com>, 2019
-# erinm, 2019
# Assumpta, 2019
# Marc Ripoll <markripesp(a)gmail.com>, 2019
# jmontane, 2019
# Adolfo Jayme-Barrientos, 2019
# Ecron <ecron_89(a)hotmail.com>, 2019
# Emma Peel, 2020
+# erinm, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: erinm, 2020\n"
"Language-Team: Catalan (https://www.transifex.com/otf/teams/1519/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +84,8 @@ msgstr "Baixada"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Execució del Navegador Tor per primera vegada"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +104,8 @@ msgstr "Ponts"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gestió d'identitats"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,12 +151,19 @@ msgstr "Problemes coneguts"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Convertiu-vos en traductor del Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -544,6 +551,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -559,7 +568,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -576,50 +585,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Si coneix que les seves connexions pateixen censura, o utilitza un servidor "
-"intermedi, seleccioni aquesta opció. El navegador Tor permetrà fer les "
-"configuracions pertinents."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"La pròxima pantalla pregunta si la seva connexió utilitza un servidor "
-"intermedi. En molts casos, no és necessari. En cas afirmatiu cliqui \"Si\", "
-"els mateixos parà metres seran aplicats a tots els navegadors del sistema. Si"
-" és possible, pregunti al seu administrador de xarxa. Si la connexió no "
-"utilitza un servidor intermedi, cliqui \"Continuar\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -707,9 +744,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -749,25 +786,52 @@ msgstr "### UTILITZACIÃ DE CONNECTORS DE TRANSPORT"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -786,21 +850,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -885,33 +949,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -938,17 +1014,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1518,6 +1599,8 @@ msgstr "Com actualitzar el navegador Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1692,6 +1775,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ASSUMPTES CONEGUTS"
@@ -2041,6 +2126,820 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Els repetidors pont són repetidors Tor que no figuren en el directori Tor "
+"públic."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Els ponts són útils per als usuaris de Tor sota rÚgims opressors, i per a "
+"persones que volen una capa addicional de seguretat perquÚ estan preocupats "
+"que algú reconegui que estan connectats a una adreça IP Tor de repetidor "
+"públic."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Recomanem una aplicació per a iOS anomenada Navegador Onion, que es de codi "
+"obert, utilitza l'enrutament Tor, i està desenvolupada per algú que treballa"
+" de prop amb el projecte Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"No obstant això, Apple requereix que els navegadors d'iOS utilitzin alguna "
+"cosa anomenat Webkit, que impedeix que el navegador Onion tingui les "
+"mateixes proteccions de privadesa que el navegador Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Actualment, no hi ha cap mÚtode compatible per executar Tor en Windows "
+"Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2161,13 +3060,13 @@ msgstr "FES UNA DONACIÃ"
msgid "Give today, and Mozilla will match your donation."
msgstr "Dóna avui, i Mozilla donarà el mateix import."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Descarregueu el navegador Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2175,11 +3074,11 @@ msgstr ""
"Baixeu el Navegador Tor i proveu com és navegar amb privadesa real, sense "
"seguiments, vigilà ncia ni censura."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "La nostra missió:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2191,33 +3090,33 @@ msgstr ""
"el suport a la seva disponibilitat i la utilització sense restriccions i el "
"foment de la seva comprensió cientÃfica i popular."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Fes una donació"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Feu una donació"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscriure's al nostre butlletà informatiu"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Obteniu actualitzacions i oportunitats mensuals del Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registrarâse"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+cs.po b/contents+cs.po
index 55077e7bc8..1d6e85915b 100644
--- a/contents+cs.po
+++ b/contents+cs.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: erinm, 2020\n"
"Language-Team: Czech (https://www.transifex.com/otf/teams/1519/cs/)\n"
@@ -84,8 +84,8 @@ msgstr "StahovánÃ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Prvnà spuÅ¡tÄnà Toru"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +104,8 @@ msgstr "Mosty"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Správa identit"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,12 +151,19 @@ msgstr "Známé problémy"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Stát se pÅekladatelem pro Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -540,6 +547,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -555,7 +564,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -572,49 +581,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Pokud vÃte, ÅŸe je vaÅ¡e pÅipojenà cenzurované nebo pouÅŸÃvá proxy, zvolte tuto"
-" moÅŸnost. Tor vás provede sérià konfiguraÄnÃch nastavenÃ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Dalšà obrazovka se ptá, jestli vaÅ¡e pÅipojenà pouÅŸÃvá proxy. Ve vÄtÅ¡inÄ "
-"pÅÃpadů to nenà nutné. Obvykle vÃte, zda máte zvolit \"Ano\", protoÅŸe stejná"
-" nastavenà budou pouÅŸÃvat i ostatnà prohlÃÅŸeÄe na vaÅ¡em systému. Pokud je to"
-" moÅŸné, zeptejte se správce vašà sÃtÄ. Pokud vaÅ¡e pÅipojenà proxy nepouÅŸÃvá,"
-" kliknÄte na \"PokraÄovat\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -702,9 +740,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -742,25 +780,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -779,21 +844,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -875,33 +940,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -928,17 +1005,22 @@ msgstr "Jakmile zÃskáte adresy mostů, musÃte je zadat do spuÅ¡tÄÄe Toru."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1438,6 +1520,8 @@ msgstr "Jak aktualizovat prohlÃÅŸeÄ Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1593,6 +1677,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1907,6 +1993,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2026,23 +2912,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "PÅispÄjte hned a Mozilla váš dar zdvojnásobÃ."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Stáhnout prohlÃÅŸeÄ Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2050,33 +2936,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "PÅispÄjte"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "PÅispÄjte"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "OdebÃrat naÅ¡e novinky"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registrovat se"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+da.po b/contents+da.po
index 1503ccb8e7..257a6c60ae 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: scootergrisen, 2019\n"
"Language-Team: Danish (https://www.transifex.com/otf/teams/1519/da/)\n"
@@ -78,8 +78,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "KÞr Tor Browser for fÞrste gang"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Broer"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "HÃ¥ndtering af identiteter"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,12 +145,19 @@ msgstr "Kendte problemer"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Bliv en Tor-oversÊtter"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -517,6 +524,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -532,7 +541,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -549,35 +558,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -585,6 +611,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -672,9 +717,9 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -712,25 +757,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -749,21 +821,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -845,33 +917,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -897,17 +981,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1393,6 +1482,8 @@ msgstr "SÃ¥dan opdateres Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1545,6 +1636,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1864,6 +1957,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -1983,13 +2876,13 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "Giv i dag, og Mozilla vil matche din donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -1997,11 +2890,11 @@ msgstr ""
"Download Tor Browser for at opleve Êgte privat browsing uden sporing, "
"overvågning og censur."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Vores mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2013,33 +2906,33 @@ msgstr ""
"ubegrÊnsede tilgÊngelighed og bruge og fremme deres videnskabslige og "
"populÊre forståelse."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donér"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donér nu"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Abonner på vores nyhedsbrev"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Få månedlige opdateringer og muligheder fra Tor-projektet:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Tilmeld"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+de.po b/contents+de.po
index ddaf898c1f..80fc802671 100644
--- a/contents+de.po
+++ b/contents+de.po
@@ -1,23 +1,23 @@
# Translators:
# Jim John <transifex(a)exware.de>, 2018
# c8faa9c4b9d81319c5c2fd62ae3a9956, 2019
-# erinm, 2019
# Ettore Atalan <atalanttore(a)googlemail.com>, 2019
# Lars Schimmer <echelon(a)i2pmail.org>, 2019
# Marcel Haring <getting(a)autistici.org>, 2019
# Friedrich-Wilhelm Prussak <info(a)prussak.de>, 2019
# Philipp . <Kuschat(a)gmx.de>, 2019
-# Jonas Kröber <murmel.schelm(a)gmail.com>, 2019
# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2020
# Emma Peel, 2020
+# erinm, 2020
+# Jonas Kröber <murmel.schelm(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: Jonas Kröber <murmel.schelm(a)gmail.com>, 2020\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"
@@ -86,8 +86,8 @@ msgstr "Lade herunter"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor Browser zum ersten Mal ausfÃŒhren"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -106,8 +106,8 @@ msgstr "BrÃŒcken"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "IdentitÀten verwalten"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -153,13 +153,20 @@ msgstr "Bekannte Probleme"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Werde ein Tor-Ãbersetzer"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -582,6 +589,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -601,13 +610,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Wenn du eine relativ schnelle Verbindung hast, aber dieser Balken an einem "
-"bestimmten Punkt stecken zu bleiben scheint, schaue auf der Seite "
-"[Fehlersuche](/Fehlerbehebung) nach, um Hilfe bei der Lösung des Problems zu"
-" erhalten."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -622,58 +627,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Wenn du weisst, dass deine Verbindung zensiert wird oder einen Proxy "
-"benutzt, dann solltest du diese Option wÀhlen. Der Tor Browser wird dich "
-"durch eine Reihe von Konfigurationsoptionen fÃŒhren."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Der erste Bildschirm fragt, ob der Zugriff auf das Tor-Netzwerk blockiert "
-"oder zensiert ist. Wenn du nicht glaubst, dass dies der Fall ist, wÀhle "
-"\"Nein\". Wenn du weiÃt, dass deine Verbindung zensiert ist, oder du "
-"versucht hast, dich mit dem Tor-Netzwerk zu verbinden und keine andere "
-"Lösung funktioniert hat, wÀhle \"Ja\". Du wirst dann zum Bildschirm "
-"[Umgehung](/de/circumvention) weitergeleitet, um eine austauschbare "
-"Ãbertragungsart zu konfigurieren."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Die nÀchste Anzeige fragt ob deine Verbindung einen Proxy benötigt. In den "
-"meisten FÀllen ist dies nicht erforderlich. Normalerweise weisst du es, wenn"
-" du hier \"Ja\" antworten musst, da die Einstellungen auch fÃŒr andere "
-"Browser auf deinem System benutzt werden. Wenn möglich bitte deinen "
-"Netzwerkadministrator um Hilfe. Wenn deine Verbindung keinen Proxy "
-"verwendet, klicke auf \"Fortfahren\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -770,13 +795,10 @@ msgstr "Meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Die meek-Ãbertragungsarten lassen es so aussehen, als wÃŒrdest du auf einer "
-"gÀngigen Webseite surfen, anstatt Tor zu benutzen. meek-azure lÀsst es so "
-"aussehen, als wÃŒrdest du eine Microsoft-Webseite benutzen."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -816,37 +838,53 @@ msgstr "### VERWENDUNG VON AUSTAUSCHBAREN ÃBERTRAGUNGSARTEN"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Um eine austauschbare Ãbertragungsart zu verwenden, klicke auf "
-"'Konfigurieren', wenn du den Tor Browser zum ersten Mal startest. Im "
-"erscheinenden Fenster wÀhle aus dem Drop-Down-MenÌ aus, welche austauschbare"
-" Ãbertragungsart du verwenden möchtest."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Oder, wenn du den Tor Browser laufen hast, klicke auf 'Einstellungen' im "
-"Hamburger-MenÌ und dann auf 'Tor' in der Seitenleiste. In der Sektion "
-"'BrÌcken' aktiviere das KÀstchen 'Eine BrÌcke verwenden', und wÀhle aus dem "
-"Drop-Down-MenÌ 'Bereitgestellte BrÌcke auswÀhlen', welche austauschbare "
-"Ãbertragungsart du verwenden möchtest."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Wenn du die gewÃŒnschte austauschbare Ãbertragungsart ausgewÀhlt hast, klicke"
-" auf 'Verbinden', um deine Einstellungen zu speichern."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -867,29 +905,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Wenn du zum ersten Mal versuchst, eine blockierte Verbindung zu umgehen, "
-"solltest du die verschiedenen Ãbertragungsarten ausprobieren: obfs4, "
-"snowflake und meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Wenn du alle diese Optionen ausprobierst und keine davon dich online bringt,"
-" musst du BrÃŒckenadressen manuell eingeben."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Lies den Abschnitt [BrÃŒcken](/de/bridges/), um zu erfahren, was BrÃŒcken sind"
-" und wie man sie erhÀlt."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -989,42 +1020,46 @@ msgstr "### VERWENDUNG VON MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Wenn du den Tor Browser zum ersten Mal startest, klicke auf 'Konfigurieren',"
-" um das Fenster mit den Tor-Netzwerk-Einstellungen zu öffnen."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Ansonsten klicke auf 'Einstellungen' im Hamburger-MenÌ (HauptmenÌ) und dann "
-"auf 'Tor' in der Seitenleiste."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Im Fenster Tor-Netzwerk-Einstellungen wÀhle 'Tor wird in meinem Land "
-"zensiert'."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"WÀhle dann 'BrÌcke von torproject.org anfordern' und klicke auf 'Neue BrÌcke"
-" anfordern...'."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "FÃŒlle das CAPTCHA aus und klicke auf \"Ãbermitteln\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1052,25 +1087,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Wenn du den Tor Browser zum ersten Mal startest, klicke auf 'Konfigurieren',"
-" um das Fenster mit den Tor-Netzwerk-Einstellungen zu öffnen. Ansonsten "
-"klicke auf 'Einstellungen' im Hamburger-MenÌ (HauptmenÌ) und dann auf 'Tor' "
-"in der Seitenleiste, um auf diese Optionen zuzugreifen."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Aktiviere im Abschnitt \"BrÌcken\" das KÀstchen \"Eine BrÌcke verwenden\", "
-"wÀhle dann \"Eine mir bekannte BrÌcke bereitstellen\" und gib jede "
-"BrÃŒckenadresse auf einer separaten Zeile ein."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1715,6 +1748,8 @@ msgstr "So aktualisierst du den Tor-Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1905,6 +1940,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### BEKANNTE PROBLEME"
@@ -2300,6 +2337,822 @@ msgstr ""
"* BitTorrent im Besonderen ist [nicht anonym ÃŒber "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"BrÌcken-Relais sind Tor-Relais, die nicht im öffentlichen Tor-Verzeichnis "
+"aufgefÃŒhrt sind."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"BrÃŒcken sind nÃŒtzlich fÃŒr Menschen in UnterdrÃŒckungs-Staaten und fÃŒr alle, "
+"die eine Extraschicht fÌr erhöhte Sicherheit bevorzugen, weil irgendwer "
+"feststellen könnte, dass sie mit der öffentlich bekannten IP-Adresse eines "
+"Tor-Knotens kommunizieren."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Wir empfehlen die quelloffene iOS-Anwendung Onion Browser fÃŒr Tor von einer "
+"Person, die eng mit dem Tor Project kooperiert."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Allerdings erfordert Apple, dass iOS-Browser Webkit benutzen, wodurch Onion "
+"Browser nicht die gleiche PrivatsphÀre bieten kann wie Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Lerne mehr ÃŒber den Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Lade Onion Browser ÃŒber den [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448) herunter."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Es gibt momentan keine unterstÃŒtzte Methode, Tor auf einem Windows-Telefon "
+"zu betreiben."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2446,13 +3299,13 @@ msgstr "SPENDE JETZT"
msgid "Give today, and Mozilla will match your donation."
msgstr "Gib noch heute, und Mozilla wird deiner Spende entsprechen."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Tor Browser herunterladen"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2460,11 +3313,11 @@ msgstr ""
"Lade Tor Browser herunter, um echtes privates Surfen ohne Verfolgung, "
"Ãberwachung oder Zensur zu erleben."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Unsere Mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2476,34 +3329,34 @@ msgstr ""
"ungehinderte VerfÌgbarkeit zu unterstÌtzen und ihr VerstÀndnis in "
"Wissenschaft und der Allgemeinheit zu vergröÃern."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Spenden"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Spende jetzt"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Abonnieren Sie unseren Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Erhalte monatliche Berichte und BeschÀftigungsaussichten vom Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registrieren"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+el.po b/contents+el.po
index 002f4fd1c1..118733effe 100644
--- a/contents+el.po
+++ b/contents+el.po
@@ -1,22 +1,22 @@
# Translators:
-# Adrian Pappas <pappasadrian(a)gmail.com>, 2019
-# Sofia K., 2019
# A Papac <ap909219(a)protonmail.com>, 2019
-# erinm, 2019
# LaScapigliata <ditri2000(a)hotmail.com>, 2019
# Panagiotis Vasilopoulos, 2019
# LOUKAS SKOUROLIAKOS, 2019
# Dimitris Adamakis <gt.dimitris(a)gmail.com>, 2020
# Elektra M. <safiragon(a)yahoo.gr>, 2020
# Emma Peel, 2020
+# erinm, 2020
+# Adrian Pappas <pappasadrian(a)gmail.com>, 2020
+# Sofia K., 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: Sofia K., 2020\n"
"Language-Team: Greek (https://www.transifex.com/otf/teams/1519/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -85,8 +85,8 @@ msgstr "ÎίΜεÏαι λήÏη"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "ÎκÏÎλεÏη ÏοÏ
Tor Browser για ÏÏÏÏη ÏοÏά"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -105,8 +105,8 @@ msgstr "ÎÎÏÏ
ÏεÏ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "ÎιαÏείÏιÏη ÏαÏ
ÏοÏήÏÏΜ"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -152,13 +152,20 @@ msgstr "ÎΜÏÏÏά ζηÏήΌαÏα"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Î ÏÏ ÎœÎ± γίΜεÏε ΌεÏαÏÏαÏÏÎ®Ï ÏοÏ
Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "ÎάΜÏε ÏοΜ Tor Browser ÏοÏηÏÏ"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -583,6 +590,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -602,13 +611,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"ÎάΜ βÏίÏκεÏÏε Ïε ÏÏεÏικά γÏήγοÏη ÏÏΜΎεÏη, αλλά αÏ
Ïή η ÎŒÏάÏα ÏαίΜεÏαι Μα "
-"κολλάει Ïε κάÏοιο ÏηΌείο, αΜαÏÏÎΟÏε ÏÏη ÏελίΎα [ÎΜÏιΌεÏÏÏιÏη ÏÏοβληΌάÏÏΜ](/ "
-"αΜÏιΌεÏÏÏιÏη ÏÏοβληΌάÏÏΜ) για βοήΞεια ÏÏεÏικά Όε ÏηΜ εÏίλÏ
Ïη ÏοÏ
"
-"ÏÏοβλήΌαÏοÏ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -623,58 +628,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"ÎΜ γΜÏÏίζεÏε ÏÏÏ Î· ÏÏΜΎεÏή ÏÎ±Ï Î»Î¿Î³Î¿ÎºÏίΜεÏαι ή ÏÏηÏιΌοÏοιεί proxy, εÏιλÎΟÏε "
-"αÏ
Ïή ÏηΜ εÏιλογή. Î Tor Browser Ξα ÏÎ±Ï Î¿ÎŽÎ·Î³Î®Ïει Ïε Όια ÏειÏά αÏÏ ÏÏ
ΞΌίÏÎµÎ¹Ï "
-"και εÏιλογÎÏ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Î ÏÏÏÏη οΞÏΜη ζηÏά εάΜ η ÏÏÏÏβαÏη ÏÏο ΎίκÏÏ
ο Tor είΜαι αÏοκλειÏÎŒÎΜη ή "
-"λογοκÏιΌÎΜη για ÏηΜ ÏÏΜΎεÏή ÏαÏ. ÎΜ ιÏÏεÏεÏε ÏÏι ΎεΜ ÏÏ
ΌβαίΜει αÏ
ÏÏ, "
-"εÏιλÎΟÏε \"ÎÏι\". ÎάΜ γΜÏÏίζεÏε ÏÏι η ÏÏΜΎεÏή ÏÎ±Ï ÎµÎ¯ÎœÎ±Î¹ λογοκÏιΌÎΜη ή αΜ "
-"ÏÏοÏÏαΞήÏαÏε και ΎεΜ ÎŒÏοÏείÏε Μα ÏÏ
ΜΎεΞείÏε ÏÏο ΎίκÏÏ
ο Tor και ΎεΜ ÎÏοÏ
Μ "
-"βÏεΞεί Î¬Î»Î»ÎµÏ Î»ÏÏειÏ, ÏÏÏε εÏιλÎΟÏε \"Îαι\". ΣÏη ÏÏ
ΜÎÏεια, Ξα ΌεÏαÏεÏΞείÏε "
-"ÏÏηΜ οΞÏΜη [ΠαÏάκαΌÏη](/ circumvention) για Μα ΎιαΌοÏÏÏÏεÏε ÏηΜ ΌεÏαÏοÏά "
-"ÎŽÏ
ΜαÏÏÏηÏÎ±Ï ÏÏΜΎεÏηÏ."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"ΠεÏÏΌεΜη οΞÏΜη ÏÏÏάει αΜ η ÏÏΜΎεÏή ÏÎ±Ï ÏÏηÏιΌοÏοιεί proxy. ΣÏÎ¹Ï "
-"ÏεÏιÏÏÏÏεÏÎµÏ ÏεÏιÏÏÏÏειÏ, αÏ
ÏÏ ÎŽÎµÎœ είΜαι αÏαÏαίÏηÏο. ΣÏ
ΜήΞÏÏ ÎžÎ± γΜÏÏίζεÏε αΜ"
-" ÏÏÎÏει Μα αÏαΜÏήÏεÏε \"Îαι\", καΞÏÏ Î¿Î¹ Î¯ÎŽÎ¹ÎµÏ ÏÏ
ΞΌίÏÎµÎ¹Ï ÎžÎ± ÏÏηÏιΌοÏοιηΞοÏΜ "
-"για άλλα ÏÏογÏάΌΌαÏα ÏεÏιήγηÏÎ·Ï ÏÏο ÏÏÏÏηΌά ÏαÏ. ÎάΜ είΜαι ÎŽÏ
ΜαÏÏΜ, ζηÏήÏÏε "
-"καΞοΎήγηÏη αÏÏ Ïο ΎιαÏειÏιÏÏή ÏοÏ
ΎικÏÏοÏ
ÏαÏ. ÎάΜ η ÏÏΜΎεÏή ÏÎ±Ï ÎŽÎµÎœ "
-"ÏÏηÏιΌοÏοιεί proxy ΌεÏολάβηÏηÏ, κάΜÏε κλικ ÏÏηΜ εÏιλογή \"ΣÏ
ΜÎÏεια\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -773,13 +798,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"οι meek ΌεÏαÏοÏÎÏ Ïα κάΜοÏ
Μ Ïλα Μα ΌοιάζοÏ
Μ ÏαΜ Μα ÏεÏιηγείÏÏε Ïε Όια Όεγάλη"
-" ιÏÏοÏελίΎα αΜÏί Μα ÏÏηÏιΌοÏοιήÏεÏε Tor. Ïο meek-azure Ïο κάΜει Μα Όοιάζει "
-"ÏαΜ Μα ÏÏηÏιΌοÏοιείÏε ÎΜαΜ ιÏÏÏÏοÏο ÏÎ·Ï Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -818,38 +840,53 @@ msgstr "### ΧΡÎΣΠΣΥÎÎÎ΀ÎÎΩΠÎÎ΀ÎΊÎΡΩÎ"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Îια Μα ÏÏηÏιΌοÏοιήÏεÏε Όια ÏÏ
ΜΎεÏική ΌεÏαÏοÏά, κάΜÏε κλικ ÏÏο 'ΡÏΞΌιÏη' καÏά"
-" ÏηΜ εκκίΜηÏη ÏοÏ
ÏÏογÏάΌΌαÏÎ¿Ï ÏεÏιήγηÏÎ·Ï Tor Browser για ÏÏÏÏη ÏοÏά. ΣÏο "
-"ÏαÏάΞÏ
Ïο ÏοÏ
εΌÏαΜίζεÏαι αÏÏ Ïο αΜαÏÏÏ
ÏÏÏΌεΜο ΌεΜοÏ, εÏιλÎΟÏε οÏοιαΎήÏοÏε "
-"ÏÏ
ΜΎεÏική ΌεÏαÏοÏά ÏοÏ
ΞÎλεÏε Μα ÏÏηÏιΌοÏοιήÏεÏε."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"ÎΜαλλακÏικά, αΜ ÎÏεÏε εΜεÏγοÏοιήÏει Ïο ÏÏÏγÏαΌΌα ÏεÏιήγηÏÎ·Ï Tor Browser, "
-"κάΜÏε κλικ ÏÏο 'Î ÏοÏιΌήÏειÏ' ÏÏο ÎŒÎµÎœÎ¿Ï ÏάΌÏοÏ
ÏÎ³ÎºÎµÏ ÎºÎ±Î¹, ÏÏη ÏÏ
ΜÎÏεια, ÏÏο "
-"'Tor' ÏÏηΜ ÏλαÏΜή γÏαΌΌή. ΣÏηΜ εΜÏÏηÏα \"ÎÎÏÏ
ÏεÏ\", εÏιλÎΟÏε Ïο ÏλαίÏιο "
-"\"ΧÏήÏη γÎÏÏ
ÏαÏ\" και, αÏÏ Ïο αΜαÏÏÏ
ÏÏÏΌεΜο ÎŒÎµÎœÎ¿Ï \"ÎÏιλογή εΜÏÏΌαÏÏÎŒÎÎœÎ·Ï "
-"γÎÏÏ
ÏαÏ\", εÏιλÎΟÏε οÏοιαΎήÏοÏε ÏÏ
ΜΎεÏική ΌεÏαÏοÏά ΞÎλεÏε Μα "
-"ÏÏηÏιΌοÏοιήÏεÏε."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"ÎÏÎ»Î¹Ï ÎµÏιλÎΟεÏε ÏηΜ ÏÏ
ΜΎεÏική ΌεÏαÏοÏά ÏοÏ
ΞÎλεÏε Μα ÏÏηÏιΌοÏοιήÏεÏε, κάΜÏε "
-"κλικ ÏÏηΜ εÏιλογή 'ΣÏΜΎεÏη' για Μα αÏοΞηκεÏÏεÏε ÏÎ¹Ï ÏÏ
ΞΌίÏÎµÎ¹Ï ÏαÏ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -870,29 +907,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"ÎάΜ ÏÏοÏÏαΞείÏε Μα ÏαÏακάΌÏεÏε Όια ΎεÏΌεÏ
ÎŒÎΜη ÏÏΜΎεÏη για ÏÏÏÏη ÏοÏά, Ξα "
-"ÏÏÎÏει Μα ΎοκιΌάÏεÏε ÏÎ¹Ï ÎŽÎ¹Î¬ÏοÏÎµÏ ÎŒÎµÏαÏοÏÎÏ: obfs4, snowflake και meek-"
-"azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"ÎάΜ ΎοκιΌάÏεÏε ÏÎ»ÎµÏ Î±Ï
ÏÎÏ ÏÎ¹Ï ÎµÏιλογÎÏ ÎºÎ±Î¹ καΌία αÏÏ Î±Ï
ÏÎÏ ÎŽÎµÎœ ÏÎ±Ï ÏÏ
ΜΎÎει "
-"online, Ξα ÏÏειαÏÏεί Μα καÏαÏÏÏίÏεÏε Όη αÏ
ÏÏΌαÏα ÏÎ¹Ï ÎŽÎ¹ÎµÏ
ΞÏΜÏÎµÎ¹Ï Î³ÎÏÏ
ÏαÏ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"ÎιαβάÏÏε ÏÎ¹Ï ÎµÎœÏÏηÏÎµÏ [ÎÎÏÏ
ÏεÏ](/el-GR/bridges/) για Μα ΌάΞεÏε Ïι είΜαι οι "
-"γÎÏÏ
ÏÎµÏ ÎºÎ±Î¹ ÏÏÏ ÎœÎ± ÏÎ¹Ï Î±ÏοκÏήÏεÏε."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -993,42 +1023,46 @@ msgstr "### ΧΡÎΣΠ΀ÎÎ¥ MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"ÎÏαΜ εκÏελείÏε ÏοΜ Tor Browser για ÏÏÏÏη ÏοÏά, κάΜÏε κλικ ÏÏο 'ΡÏ
ΞΌίÏειÏ' "
-"για Μα αΜοίΟεÏε ÏÎ¹Ï Î¡Ï
ΞΌίÏÎµÎ¹Ï ÎικÏÏοÏ
ÏοÏ
Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"ÎιαÏοÏεÏικά, κάΜÏε κλικ ÏÏο 'Î ÏοÏιΌήÏειÏ' ÏÏο ÎŒÎµÎœÎ¿Ï ÏάΌÏοÏ
ÏÎ³ÎºÎµÏ (κÏÏιο "
-"ΌεΜοÏ) και, ÏÏη ÏÏ
ΜÎÏεια, ÏÏο 'Tor' ÏÏηΜ ÏλαÏΜή γÏαΌΌή."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"ΣÏο ÏαÏάΞÏ
Ïο \"ΡÏ
ΞΌίÏÎµÎ¹Ï ÎιαΎικÏÏοÏ
\", εÏιλÎΟÏε \"΀ο Tor είΜαι λογοκÏιΌÎΜο "
-"ÏÏη ÏÏÏα ΌοÏ
\"."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"ΣÏη ÏÏ
ΜÎÏεια, εÏιλÎΟÏε 'ÎιÏηΞείÏε Όια γÎÏÏ
Ïα αÏÏ Ïο torproject.org' και "
-"κάΜÏε κλικ ÏÏο 'ÎίÏηΌα γÎÏÏ
ÏÎ±Ï ...'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "ΣÏ
ÎŒÏληÏÏÏÏε Ïο CAPTCHA και κάΜÏε κλικ ÏÏο κοÏ
ÎŒÏί \"Î¥Ïοβολή\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1056,25 +1090,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"ÎÏαΜ εκÏελÎÏεÏε ÏοΜ Tor Browser για ÏÏÏÏη ÏοÏά, ÏαÏήÏÏε \"ÎιαΌÏÏÏÏÏη\" για "
-"Μα αΜοίΟεÏε Ïο ÏαÏάΞÏ
Ïο ΡÏ
ΞΌίÏεÏΜ ÎικÏÏοÏ
ÏοÏ
Tor. ÎιαÏοÏεÏικά, κάΜÏε κλικ "
-"ÏÏο 'Î ÏοÏιΌήÏειÏ' ÏÏο ÎŒÎµÎœÎ¿Ï ÏάΌÏοÏ
ÏÎ³ÎºÎµÏ (κÏÏιο ΌεΜοÏ) και, ÏÏη ÏÏ
ΜÎÏεια, ÏÏο"
-" 'Tor' ÏÏηΜ ÏλαÏΜή ÎŒÏάÏα για ÏÏÏÏβαÏη Ïε αÏ
ÏÎÏ ÏÎ¹Ï ÎµÏιλογÎÏ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"ΣÏηΜ εΜÏÏηÏα \"ÎÎÏÏ
ÏεÏ\", εÏιλÎΟÏε Ïο ÏλαίÏιο \"ΧÏήÏη γÎÏÏ
ÏαÏ\", και ÏÏη "
-"ÏÏ
ΜÎÏεια, εÏιλÎΟÏε \"ΠαÏοÏή ÎŒÎ¹Î±Ï Î³ÎÏÏ
ÏÎ±Ï ÏοÏ
γΜÏÏίζÏ\" και ειÏάγεÏε κάΞε "
-"ΎιεÏΞÏ
ΜÏη γÎÏÏ
ÏÎ±Ï Ïε ΟεÏÏÏιÏÏή γÏαΌΌή."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1722,6 +1754,8 @@ msgstr "Î ÏÏ ÎœÎ± εΜηΌεÏÏÏεÏε ÏοΜ Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1912,6 +1946,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ÎÎΩΣ΀ΠÎÎ΀ÎÎÎ΀Î"
@@ -2310,6 +2346,816 @@ msgstr ""
"* ΀ο BitTorrent ÏÏ
γκεκÏιΌÎΜα ΎεΜ είΜαι [αΜÏΜÏ
Όο Όε ÏοΜ "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Îι εΜΎιάΌεÏοι κÏΌβοι ÎÎÏÏ
ÏÎµÏ ÎµÎ¯ÎœÎ±Î¹ εΜΎιάΌεÏοι κÏΌβοι ÏοÏ
ΎεΜ είΜαι "
+"καÏαÏÏÏηΌÎΜοι ÏÏο ΎηΌÏÏιο καÏάλογο ÏοÏ
Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"ΣÏ
ΜιÏÏοÏΌε Όια εÏαÏΌογή για iOS ÏοÏ
οΜοΌάζεÏαι Onion Browser, η οÏοία είΜαι "
+"αΜοιÏÏÎ¿Ï ÎºÏΎικα, ÏÏηÏιΌοÏοιεί Ïη ÎŽÏοΌολÏγηÏη ÏοÏ
Tor και αΜαÏÏÏÏÏεÏαι αÏÏ "
+"κάÏοιοΜ ÏοÏ
ÏÏ
ΜεÏγάζεÏαι ÏÏεΜά Όε Ïο Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"ΩÏÏÏÏο, η Apple αÏαιÏεί οι ÏεÏιηγηÏÎÏ ÏÏο iOS Μα ÏÏηÏιΌοÏοιοÏΜ κάÏι ÏοÏ
"
+"οΜοΌάζεÏαι Webkit, Ïο οÏοίο εΌÏοΎίζει ÏοΜ Onion Browser Μα ÎÏει ÏÎ¹Ï Î¯ÎŽÎ¹ÎµÏ "
+"ÎŽÎ¹ÎºÎ»Î¯ÎŽÎµÏ ÏÏοÏÏαÏÎ¯Î±Ï Î±ÏοÏÏήÏοÏ
Όε ÏοΜ Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"ÎεΜ Ï
ÏάÏÏει αÏ
ÏήΜ ÏηΜ ÏÏιγΌή Ï
ÏοÏÏηÏιζÏÎŒÎµÎœÎ¿Ï ÏÏÏÏÎ¿Ï Î³Î¹Î± Μα ÏÏÎΟει Ïο Tor Ïε "
+"Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2455,13 +3301,13 @@ msgstr "ÎΩΡÎΣTΠ΀ΩΡÎ"
msgid "Give today, and Mozilla will match your donation."
msgstr "ÎÏÏίÏÏε ÏήΌεÏα και Ïο Mozilla Ξα ÎŽÏÏίÏει Ïο ίΎιο ÏοÏÏ!"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "ÎαÏεβάÏÏε ÏοΜ Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2469,11 +3315,11 @@ msgstr ""
"ÎάΜÏε λήÏη ÏοÏ
Tor Browser για Μα ζήÏεÏε Ïη ÏÏαγΌαÏική ιΎιÏÏική ÏεÏιήγηÏη "
"ÏÏÏÎ¯Ï ÏαÏακολοÏΞηÏη, εÏιÏήÏηÏη ή λογοκÏιÏία."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "ΠαÏοÏÏολή ΌαÏ:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2486,33 +3332,33 @@ msgstr ""
"ΎιαΞεÏιΌÏÏηÏα και ÏÏήÏη ÏοÏ
Ï ÎºÎ±Î¹ εΜιÏÏÏοΜÏÎ±Ï ÏηΜ εÏιÏÏηΌοΜική και κοιΜή ÏοÏ
Ï"
" καÏαΜÏηÏη."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ÎÏÏίÏÏε"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ÎάΜÏε Όια ÎŽÏÏεά ÏÏÏα!"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ÎγγÏαÏείÏε ÏÏο Newsletter ΌαÏ"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ÎάβεÏε ÎŒÎ·ÎœÎ¹Î±Î¯ÎµÏ ÎµÎœÎ·ÎŒÎµÏÏÏÎµÎ¹Ï ÎºÎ±Î¹ εÏ
καιÏÎ¯ÎµÏ Î±ÏÏ Ïο Tor Project"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "ÎγγÏαÏή"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+en-GB.po b/contents+en-GB.po
index 3b8b6db45f..6adb3c16ec 100644
--- a/contents+en-GB.po
+++ b/contents+en-GB.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Andi Chandler <andi(a)gowling.com>, 2019\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/otf/teams/1519/en_GB/)\n"
@@ -77,8 +77,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Running Tor Browser for the first time"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -97,8 +97,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Managing identities"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -144,12 +144,19 @@ msgstr "Known issues"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -512,6 +519,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -527,7 +536,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -544,43 +553,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -588,6 +606,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -675,9 +712,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -715,25 +752,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -752,21 +816,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -851,33 +915,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -904,17 +980,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1448,6 +1529,8 @@ msgstr "How to update Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1612,6 +1695,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1944,6 +2029,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2063,23 +2948,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr ""
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2087,33 +2972,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donate"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donate Now"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr ""
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+en.po b/contents+en.po
index 638311cc09..b12a029b25 100644
--- a/contents+en.po
+++ b/contents+en.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+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"
@@ -73,8 +73,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Running Tor Browser for the first time"
+msgid "Running Tor Browser for the First Time"
+msgstr "Running Tor Browser for the First Time"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -93,8 +93,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Managing identities"
+msgid "Managing Identities"
+msgstr "Managing Identities"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -140,13 +140,20 @@ msgstr "Known issues"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr "Mobile Tor"
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Becoming a Tor Translator"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
+msgstr "Making Tor Browser Portable"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -560,6 +567,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -578,11 +587,11 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -598,56 +607,91 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
msgstr ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr "Tor Browser will take you through a series of configuration options."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
msgstr ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr "If you do not believe this is the case, leave this unchecked."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr "If possible, ask your network administrator for guidance."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr "If your connection does not use a proxy, click âConnectâ."
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -744,13 +788,13 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -789,35 +833,65 @@ msgstr "### USING PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr "Your settings will automatically be saved once you close the tab."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -837,28 +911,28 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -955,41 +1029,60 @@ msgstr "### USING MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1017,24 +1110,29 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
+msgstr "Click \"Connect\" to save your settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1653,6 +1751,8 @@ msgstr "How to update Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1838,6 +1938,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### KNOWN ISSUES"
@@ -2219,6 +2321,986 @@ msgstr ""
"* BitTorrent in specific is [not anonymous over "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr "Learn about Tor for mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr "### Tor Browser for Android"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr "### DOWNLOADING AND INSTALLATION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+"It is very risky to download Tor Browser outside of these three platforms."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr "#### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr "#### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr "2. After installing F-Droid, open the app."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr "3. At the lower-right-hand corner, open \"Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr "4. Under the \"My Apps\" section, open Repositories."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr "5. Toggle \"Guardian Project Official Releases\" as enabled."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr "7. Tap the Back button at the upper-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr "8. Open \"Latest\" at the lower-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr "11. Search for \"Tor Browser for Android\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr "12. Open the query result by \"The Tor Project\" and install."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr "#### The Tor Project website"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr "#### Connect"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr "#### Configure"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr "### CIRCUMVENTION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr "### MANAGING IDENTITIES"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr "#### New Identity"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr "Clicking on this button will provide you with a new identity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr "Selecting it will only change your Tor circuit."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr "### SECURITY SETTINGS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr "You can modify the security level by following given steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr "* Tap on a button of 3 vertical dots in URL bar."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr "* Scroll down and tap on \"Security Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr "* You can now select an option from the security level slider."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr "### UPDATING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr "You can update Tor Browser automatically or manually."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr "#### Updating Tor Browser for Android automatically"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr "##### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr "##### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr "Click on \"Settings\", then go to \"Manage installed apps\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr "#### Updating Tor Browser for Android manually"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr "### UNINSTALLING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr "#### Mobile device app settings"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr "### More about Tor on mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr "#### Orfox"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr "Android was released."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr "#### Orbot"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr "circumvent censorship and protect against surveillance."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr "### Tor Browser for iOS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr "There is no Tor Browser for iOS."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr "### Tor Browser for Windows Phone"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"There is currently no supported method for running Tor on Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2360,13 +3442,13 @@ msgstr "DONATE NOW"
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2374,11 +3456,11 @@ msgstr ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Our mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2390,33 +3472,33 @@ msgstr ""
"availability and use, and furthering their scientific and popular "
"understanding."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donate"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donate Now"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscribe to our Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Get monthly updates and opportunities from the Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Sign up"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+es-AR.po b/contents+es-AR.po
index 6814d87db4..33676d08a0 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -1,17 +1,17 @@
# Translators:
# sbosio <santiago.bosio(a)gmail.com>, 2018
# Emma Peel, 2018
-# erinm, 2019
-# Zuhualime Akoochimoya, 2020
# JoaquÃn Serna <bubuanabelas(a)cryptolab.net>, 2020
+# erinm, 2020
+# Zuhualime Akoochimoya, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: JoaquÃn Serna <bubuanabelas(a)cryptolab.net>, 2020\n"
+"Last-Translator: Zuhualime Akoochimoya, 2020\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/otf/teams/1519/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -80,8 +80,8 @@ msgstr "Descargando"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Corriendo el Navegador Tor por primera vez"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -100,8 +100,8 @@ msgstr "Puentes"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gestionando identidades"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -147,13 +147,20 @@ msgstr "Dificultades conocidas"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Siendo traductor para Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Hacer portable el Navegador Tor"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -555,6 +562,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -570,7 +579,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -587,50 +596,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Si sabés que tu conexión está censurada, o usa un proxy, debieras "
-"seleccionar ésta opción. El Navegador Tor te llevará a través de una serie "
-"de opciones de configuración."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"La siguiente pantalla pregunta si tu conexión usa un proxy. En la mayorÃa de"
-" los casos, esto no es necesario. Usualmente sabrás si necesitás contestar "
-"\"SÃ\", ya que los mismos ajustes serán usados por otros navegadores en tu "
-"sistema. Si es posible, preguntale a tu administrador de red para que te "
-"guÃe. Si tu conexión no usa un proxy, cliqueá \"Continuar\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -718,9 +755,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -760,25 +797,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -797,21 +861,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -896,33 +960,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -949,17 +1025,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1532,6 +1613,8 @@ msgstr "Cómo actualizar el Navegador Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1706,6 +1789,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2058,6 +2143,819 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Relevos puente son relevos Tor que no están listados en el directorio "
+"público de Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Los puentes son útiles para usuarios de Tor bajo regÃmenes represivos, y "
+"para las personas que quieren una capa extra de seguridad porque están "
+"preocupadas que alguien reconocerá que están contactando una dirección IP de"
+" un relevo Tor público."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Recomendamos una aplicación iOS llamada navegador Onion, la cual es de "
+"fuente abierta, usa ruteo Tor, y está desarrollada por alguien que trabaja "
+"cercanamente con el proyecto Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Sin embargo, Apple requiere que los navegadores en iOS usen algo llamado "
+"Webkit, lo cual evita que el navegador Onion tenga las mismas protecciones "
+"de privacidad que el Navegador Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"No hay al momento ningún método soportado para correr Tor en Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2177,23 +3075,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "Dá hoy, y Mozilla emparejará tu donación."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Descargar Navegador Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Nuestra misión:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2201,33 +3099,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doná"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Doná ahora"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Suscribite a nuestro boletÃn informativo"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Suscribirte"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+es.po b/contents+es.po
index bbd2a9afe2..a31d2d006b 100644
--- a/contents+es.po
+++ b/contents+es.po
@@ -1,19 +1,19 @@
# Translators:
# Antonela D <antonela(a)torproject.org>, 2019
-# Zuhualime Akoochimoya, 2019
-# David Figuera <dfb(a)fastmail.com>, 2019
-# erinm, 2019
# Nicolas Sera-Leyva <nseraleyva(a)internews.org>, 2019
# strel, 2019
# eulalio barbero espinosa <eulaliob(a)gmail.com>, 2019
# JoaquÃn Serna <bubuanabelas(a)cryptolab.net>, 2020
+# erinm, 2020
+# Zuhualime Akoochimoya, 2020
+# David Figuera <dfb(a)fastmail.com>, 2020
# Emma Peel, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Emma Peel, 2020\n"
"Language-Team: Spanish (https://www.transifex.com/otf/teams/1519/es/)\n"
@@ -84,8 +84,8 @@ msgstr "Descargando"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Ejecutar Tor Browser por primera vez"
+msgid "Running Tor Browser for the First Time"
+msgstr "Corriendo el Navegador Tor por primera vez"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +104,8 @@ msgstr "Puentes"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Administrar identidades"
+msgid "Managing Identities"
+msgstr "Gestionar Identidades"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,12 +151,19 @@ msgstr "Problemas conocidos"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Traducir Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr "Hacer portable el Navegador Tor"
#: https//tb-manual.torproject.org/menu/
@@ -576,6 +583,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -595,12 +604,12 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
"Si tienes una conexión relativamente rápida pero la barra parece haberse "
-"quedado fija en un determinado punto, lee la página [Solución de "
-"problemas](/es/troubleshooting) para obtener ayuda para solucionar el "
+"quedado fija en un determinado punto, lee la página de [Solución de "
+"problemas](../troubleshooting) para obtener ayuda para solucionar el "
"problema."
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -616,56 +625,84 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
msgstr ""
-"Si sabes que tu conexión está censurada o usas un proxy, debes seleccionar "
-"esta opción. Tor te llevará a través de una serie de opciones de "
+"Si sabes que tu conexión está censurada, o usa un proxy, deberÃas "
+"seleccionar ésta opción."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+"El Navegador Tor te llevará a través de una serie de opciones de "
"configuración."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
-"La primera pantalla, pregunta si el acceso a la red Tor está bloqueado o "
-"censurado en tu conexión. Si no crees que este sea el caso, selecciona "
-"\"No\". Si sabes que tu conexión está censurada, o has intentado conectar a "
-"la red Tor y no han funcionado otras soluciones, selecciona \"SÃ\", que te "
-"llevará a la pantalla [Evasión](/es/circumvention) para configurar un "
-"transporte conectable."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"La siguiente pantalla pregunta si tu conexión usa un proxy. En la mayorÃa de"
-" los casos esto no es necesario. Normalmente sabrás si debe responder "
-"\"SÃ\", ya que estarás usando la misma configuración para otros navegadores "
-"en tu sistema. Si puedes, pide información a tu administrador de red. Si tu "
-"conexión no usa un proxy, pulsa \"Continuar\"."
+"Si sabes que tu conexión está censurada, o has intentado conectar a la red "
+"Tor y no han funcionado otras soluciones, marca esta casilla."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr "Si es posible, preguntale a tu administrador de red para que te guÃe."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -762,9 +799,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
"Los transportes meek hacen que parezca que estás navegando por un sitio web "
"conocido en lugar de usar Tor. meek-azure hace que parezca que estás usando "
@@ -807,36 +844,57 @@ msgstr "### USAR TRANSPORTES CONECTABLES"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
"Para usar un transporte conectable, haz clic en' Configurar' cuando inicies "
-"Tor Browser por primera vez. En la ventana que aparece, en el menú "
-"desplegable, selecciona el transporte conectable que desees utilizar."
+"Tor Browser por primera vez."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
msgstr ""
"O, si tienes el Navegador Tor funcionando, haz clic en 'Preferencias' en el "
-"menú hamburguesa y luego en 'Tor' en la barra lateral. En la sección "
-"'Puentes', marca la casilla 'Usar un puente', y en el menú desplegable "
-"'Selecciona un puente integrado', elije el transporte conectable que desees "
-"utilizar."
+"menú hamburguesa y luego en 'Tor' en la barra lateral."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Una vez que hayas seleccionado el transporte conectable que te gustarÃa "
-"usar, haz clic en 'Conectar' para guardar tus ajustes."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -856,7 +914,7 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
"Si es la primera vez que intentas usar una conexión censurada, has de probar"
" con los distintos transportes que hay disponibles: obfs4, snowflake y meek-"
@@ -866,7 +924,7 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
"Si pruebas todas estas opciones y no consigues conectarte con ninguna de "
"ellas, necesitarás introducir direcciones de puentes de red manualmente."
@@ -874,11 +932,11 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Lee la sección de [Puentes](/es/bridges/) para saber qué son los repetidores"
-" puente y cómo obtenerlos."
+"Lee la sección de [Puentes](../bridges/) para saber qué son los repetidores "
+"puente y cómo obtenerlos."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -977,8 +1035,17 @@ msgstr "### USAR MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+msgstr ""
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
"Cuando ejecutes el Tor Browser por primera vez, haz clic en 'Configurar' "
"para abrir la ventana de Configuración de la Red Tor."
@@ -986,34 +1053,32 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-" También puedes hacer clic en el botón 'Preferencias' en el menú hamburguesa"
-" (menú principal) y luego 'Tor' en la barra lateral."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"En la ventana Configuración de la Red Tor, selecciona 'Tor está censurado en"
-" mi paÃs'. Luego, selecciona 'Proveer un puente que conozco' e ingresa cada "
-"dirección de puente en una lÃnea separada."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
msgstr ""
-"A continuación, selecciona 'Solicitar un puente de torproject.org' y haz "
-"clic en 'Solicitar un puente...'."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Completa el CAPTCHA y haz click en 'Enviar'."
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1041,25 +1106,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
msgstr ""
-"Si estás iniciando el Navegador Tor por primera vez, haz clic en "
-"'Configurar' para abrir la ventana de Configuración de la Red Tor. O si no, "
-"haz clic en `Preferencias' en el menú hamburguesa (menú principal) y luego "
-"en `Tor' en la barra lateral para acceder a estas opciones."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
+msgstr "Haz clic en 'Conectar' para guardar tus ajustes."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"En la sección 'Puentes', marca la casilla 'Usar un puente', luego, "
-"selecciona 'Proporcionar un puente' e introduce cada dirección de puente en "
-"una lÃnea separada."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1441,7 +1504,7 @@ msgstr ""
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
msgid "### TROUBLESHOOTING"
-msgstr "### SOLUCIÃN DE PROBLEMAS "
+msgstr "### SOLUCIÃN DE PROBLEMAS"
#: https//tb-manual.torproject.org/onion-services/
#: (content/onion-services/contents+en.lrtopic.body)
@@ -1669,7 +1732,7 @@ msgstr ""
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
msgid "These changes affect images, media, and scripts."
-msgstr " Estos cambios afectan a imágenes, medios, y scripts."
+msgstr "Estos cambios afectan a imágenes, medios, y scripts."
#: https//tb-manual.torproject.org/security-settings/
#: (content/security-settings/contents+en.lrtopic.body)
@@ -1694,6 +1757,8 @@ msgstr "Cómo actualizar el Navegador Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1880,6 +1945,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLEMAS CONOCIDOS"
@@ -1991,7 +2058,7 @@ msgstr ""
"desactivación de JavaScript evitará que muchos sitios web se muestren "
"correctamente, por lo que la configuración predeterminada del Navegador Tor "
"es permitir que todos los sitios web ejecuten scripts en el modo "
-"\"Estándar\""
+"\"Estándar\"."
#: https//tb-manual.torproject.org/plugins/
#: (content/plugins/contents+en.lrtopic.body)
@@ -2276,6 +2343,832 @@ msgstr ""
"* EspecÃficamente BitTorrent [âno es anónimo sobre "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr "### DESCARGA E INSTALACIÃN"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr "#### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr "#### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr "#### Conectar"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr "#### Configurar"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+"Si sabés que tu conexión está censurada, deberÃas seleccionar el icono de "
+"configuración."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+"La primera pantalla, pregunta si el acceso a la red Tor está bloqueado o "
+"censurado en tu conexión."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+"Si sabes que tu conexión está censurada, o has intentado conectar a la red "
+"Tor y no han funcionado otras soluciones, haz click en la casilla."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr "Evasión"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Los repetidores puente son repetidores Tor que no están listados en el "
+"directorio público de Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Los puentes son útiles para los usuarios de Tor que se conectan en sitios "
+"bajo regÃmenes opresivos, y para la gente que quiere una capa extra de "
+"seguridad porque les preocupa que alguien reconozca que están contactando "
+"con una dirección IP pública de Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+"Para usar un transporte conectable, haz clic en el icono 'Configurar' cuando"
+" inicies Tor Browser por primera vez."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr "### GESTIONAR IDENTIDADES"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr "##### Nueva Identidad"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr "#### Configuración de seguridad"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr "### ACTUALIZAR"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr "### ACTUALIZAR EL NAVEGADOR TOR AUTOMÃTICAMENTE"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr "##### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr "##### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr "### Actualizar manualmente Tor Browser para Android"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr "### DESINSTALAR"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr "#### Orfox"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr "#### Orbot"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Recomendamos una aplicación para iOS llamada Onion Browser, de código "
+"abierto, que usa enrutamiento Tor y está desarrollada por alguien que "
+"trabaja estrechamente con Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Sin embargo, Apple requiere que los navegadores en iOS usen algo llamado "
+"Webkit, que evita que el navegador Onion tenga las mismas protecciones de "
+"privacidad que el Navegador Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Conoce más sobre el Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Descarga Onion Browser desde la [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Actualmente no existe un método soportado para ejecutar Tor en Windows "
+"Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2420,13 +3313,13 @@ msgstr "DONA AHORA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Dona hoy, y Mozilla igualará tu donación."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Bajarse el Navegador Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2434,11 +3327,11 @@ msgstr ""
"Descarga Navegador Tor para experimentar navegación privada real sin "
"rastreo, vigilancia ni censura."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Nuestra misión:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2450,33 +3343,33 @@ msgstr ""
"abierto, el apoyo a su disponibilidad y utilización sin restricciones y el "
"fomento de su comprensión cientÃfica y popular."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donar"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Dona Ahora"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "SuscrÃbete a nuestra lista de correo"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Recibe noticias mensuales y oportunidades del Proyecto Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registrarse"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+fa.po b/contents+fa.po
index 088f2725e9..9041792146 100644
--- a/contents+fa.po
+++ b/contents+fa.po
@@ -6,19 +6,19 @@
# erinm, 2019
# b0b47d46632b78a09a40de799fda9a65, 2019
# MYZJ, 2019
-# Samaneh M <asamana.haoma(a)gmail.com>, 2019
# AmirAli Dabouei <amirgm.info(a)gmail.com>, 2020
# Emma Peel, 2020
-# magnifico, 2020
# Seyyed Hossein Darvari <xhdix(a)yahoo.com>, 2020
+# Reza Ghasemi, 2020
+# Samaneh M <asamana.haoma(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Seyyed Hossein Darvari <xhdix(a)yahoo.com>, 2020\n"
+"Last-Translator: Samaneh M <asamana.haoma(a)gmail.com>, 2020\n"
"Language-Team: Persian (https://www.transifex.com/otf/teams/1519/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -87,8 +87,8 @@ msgstr "âŸïž داÙÙÙØ¯ Ù
Ø±ÙØ±Ú¯Ø±"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "âŸïž Ø§Ø¬Ø±Ø§Û Ù
Ø±ÙØ±Ú¯Ø± ØªÙØ± ØšØ±Ø§Û ÙØ®Ø³ØªÛ٠ؚار "
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -107,8 +107,8 @@ msgstr "âŸïž ÙŸÙ ÙØ§"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "âŸïž Ù
Ø¯ÛØ±Ûت ÙÙÛØª ÙØ§"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -154,13 +154,20 @@ msgstr "âŸïž Ù
ØŽÚ©ÙØ§Øª ØŽÙØ§Ø®ØªÙ ؎دÙ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "âŸïž Ù
ترجÙ
ØªÙØ± ØŽÙÛØ¯"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "âŸïž ÙØ§ØšÙ ØÙ
٠ساخت٠Ù
Ø±ÙØ±Ú¯Ø± ØªÙØ± "
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -576,6 +583,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -595,11 +604,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"اگر ØŽÙ
ا Ø§ØªØµØ§Ù ÙŸØ±Ø³Ø±Ø¹ØªÛ Ø¯Ø§Ø±ÛØ¯ اÙ
ا ØšÙ ÙØžØ±ØªØ§Ù ÙÙØ§Ø± ÙØ¶Ø¹Ûت اتصا٠در ÙÙØ·ÙâØ§Û Ú¯ÛØ± "
-"Ú©Ø±Ø¯ÙØ ØšØ±Ø§Û ØÙ Ù
ØŽÚ©Ù ØšÙ ØµÙØÙ [Ø¹ÛØšâÛØ§ØšÛ](/fa/troubleshooting/) Ù
راجع٠کÙÛØ¯."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -614,56 +621,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"اگر Ù
Û Ø¯Ø§ÙÛØ¯ ک٠ارتؚاط اÛÙØªØ±ÙØªÛ ØŽÙ
ا Ø³Ø§ÙØ³Ùر ؎د٠است ÛØ§ اÛÙک٠از ٟرÙÚ©Ø³Û Ø§Ø³ØªÙØ§Ø¯Ù Ù
Û Ú©ÙÛØ¯Ø ØšØ§ÛØ¯ اÛ٠گزÛÙ٠را Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯.\n"
-"در اÛÙ ØØ§ÙØªØ Ù
Ø±ÙØ±Ú¯Ø± Tor اÙ
Ú©Ø§Ù Ø§Ø³ØªÙØ§Ø¯Ù از Ù
جÙ
ÙØ¹Ù Ø§Û Ø§Ø² ØªÙØžÛÙ
ات را ØšÙ ØŽÙ
ا Ø®ÙØ§Ùد داد."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"در ØµÙØÙ ÙØ®Ø³Øª از ØŽÙ
ا Ù
Û ÙŸØ±Ø³Ø¯ Ú©Ù Ø¢ÛØ§ Ø¯Ø³ØªØ±Ø³Û ØšÙ ØŽØšÚ©Ù Tor ؚر رÙÛ Ø§Ø±ØªØšØ§Ø· اÛÙØªØ±ÙتÛ"
-" ØŽÙ
ا Ù
Ø³Ø¯ÙØ¯ ÛØ§ Ø³Ø§ÙØ³Ùر ØŽØ¯Ù Ø§Ø³ØªØ Ø§Ú¯Ø± Ùکر Ù
Û Ú©ÙÛØ¯ اÛÙ Ú¯ÙÙÙ ÙÛØ³ØªØ گزÛÙÙ \"Ø®ÛØ±\" "
-"را Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯. اگر Ù
Û Ø¯Ø§ÙÛØ¯ ارتؚاط اÛÙØªØ±ÙØªÛ ØŽÙ
ا Ø³Ø§ÙØ³Ùر ØŽØ¯Ù Ø§Ø³ØªØ ÛØ§ ÙÛÚ Ú©Ø¯Ø§Ù
"
-" از Ø±ÙØŽ ÙØ§ ØšØ±Ø§Û Ø§ØªØµØ§Ù ØšÙ ØŽØšÚ©Ù Tor کار ÙÚ©Ø±Ø¯Ù Ø§Ø³ØªØ Ú¯Ø²ÛÙÙ \"ØšÙÙ\" را Ø§ÙØªØ®Ø§Øš "
-"Ú©ÙÛØ¯. در اÛÙ ØØ§ÙØªØ ØšØ±Ø§Û ÙŸÛÚ©Ø±ØšÙØ¯Û ÛÚ©Û Ø§Ø² ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ±Ø ØšÙ ØµÙØÙ [Ø¯ÙØ± "
-"Ø²Ø¯Ù Ø³Ø§ÙØ³Ùر](/fa/circumvention/) Ù
ÙØªÙÙ Ù
Û ØŽÙÛØ¯."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"ØµÙØÙ ØšØ¹Ø¯Ø Ø§Ø² ØŽÙ
ا Ø¯Ø±ØšØ§Ø±Ù Ø§Ø³ØªÙØ§Ø¯Ù از ٟرÙÚ©Ø³Û ØšØ± رÙÛ Ø§ØªØµØ§Ù Ø§ÛÙØªØ±ÙØªÛ ØªØ§Ù Ù
Û ÙŸØ±Ø³Ø¯."
-" در ØšÛØŽØªØ± Ù
ÙØ§Ø±Ø¯Ø ؚ٠اÛ٠گزÛÙÙ ÙÛØ§Ø²Û ÙÛØ³Øª. اگر از ٟرÙÚ©Ø³Û Ø§Ø³ØªÙØ§Ø¯Ù Ù
Û Ú©ÙÛØ¯Ø "
-"Ù
عÙ
ÙÙØ§ Ù
اÙÙØ¯ ÙÙ
Ø§Ù ØªÙØžÛÙ
Ø§ØªÛ Ú©Ù ØšØ±Ø§Û Ø³Ø§ÛØ± Ù
Ø±ÙØ±Ú¯Ø±ÙØ§Û Ø³ÛØ³ØªÙ
تا٠ؚکار Ø±ÙØªÙ Ø§Ø³ØªØ "
-"ØªÙØžÛÙ
Ù
Û ØŽÙØ¯. در ØµÙØ±Øª اÙ
Ú©Ø§ÙØ از Ù
Ø¯ÛØ± ØŽØšÚ©Ù Ø®ÙØ¯ØªØ§Ù در Ù
ÙØ±Ø¯ ØªÙØžÛÙ
ات آ٠راÙÙÙ
اÛÛ"
-" ØšÚ¯ÛØ±Ûد. اگر اتصا٠اÛÙØªØ±Ùت ØŽÙ
ا از ٟرÙÚ©Ø³Û Ø§Ø³ØªÙØ§Ø¯Ù ÙÙ
Û Ú©ÙØ¯Ø ؚر رÙÛ Ø¯Ú©Ù
Ù "
-"\"اداÙ
Ù\" Ú©ÙÛÚ© Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -761,15 +790,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"در ÙÙگاÙ
Ø§Ø³ØªÙØ§Ø¯Ù از meekØ ØšÙ ÙØžØ± Ù
ÛâØ±Ø³Ø¯ Ú©Ù ØšÙ Ø¬Ø§Û Ø§Ø³ØªÙØ§Ø¯Ù از ØŽØšÚ©Ù TorØ Ø¯Ø± "
-"ØØ§Ù Ù
ØŽØ§ÙØ¯ÙâÛ ÛÚ© ÙØš Ø³Ø§ÛØª ؚزرگ - ØºÛØ± از Tor - ÙØ³ØªÛد. ؚ٠عÙÙØ§Ù ÙÙ
ÙÙÙØ ؚا "
-"Ø§Ø³ØªÙØ§Ø¯Ù از meek-azure ØšÙ ÙØžØ± ؚرسد ØŽÙ
ا در ØØ§Ù Ø§Ø³ØªÙØ§Ø¯Ù از ÙØš Ø³Ø§ÛØª Ù
اÛÚ©Ø±ÙØ³Ø§Ùت "
-"ÙØ³ØªÛد!! ØšÙØ§ØšØ±Ø§Û٠کساÙÛ Ú©Ù ØšØ± اÛÙØªØ±Ùت ØŽÙ
ا ÙØžØ§Ø±Øª Ø¯Ø§Ø±ÙØ¯Ø Ù
ØªÙØ¬Ù Ø§Ø³ØªÙØ§Ø¯Ù ØŽÙ
ا از "
-"ØŽØšÚ©Ù Tor ÙÙ
Û ØŽÙÙØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -810,36 +834,53 @@ msgstr "### â Ø§Ø³ØªÙاد٠از ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ±"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"ØšØ±Ø§Û Ø§Ø³ØªÙØ§Ø¯Ù از ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ±Ø ÙÙگاÙ
ؚاز کرد٠Ù
Ø±ÙØ±Ú¯Ø± Tor ØšØ±Ø§Û ÙØ®Ø³ØªÛÙ "
-"ØšØ§Ø±Ø ØšØ± رÙÛ Ø¯Ú©Ù
Ù 'ÙŸÛÚ©Ø±ØšÙØ¯Û' Ú©ÙÛÚ© Ú©ÙÛØ¯. در ØµÙØÙâØ§Û Ú©Ù ÙÙ
Ø§ÛØŽ Ù
ÛâÛØ§ØšØ¯Ø از Ù
ÙÙÛ "
-"Ú©ØŽÙÛÛØ ÙØ± ÙÙØ¹Û از ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ± را Ú©Ù Ù
ÛâØ®ÙØ§ÙÛØ¯ Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"ÛØ§Ø اگر در ØØ§Ù Ø§Ø³ØªÙØ§Ø¯Ù از Ù
Ø±ÙØ±Ú¯Ø± Tor ÙØ³ØªÛØ¯Ø ØšØ± رÙÛ 'ØªÙØžÛÙ
ات' در Ù
ÙÙÛ ÙÙ
ؚرگرÛ"
-" Ú©ÙÛÚ© کرد٠٠سٟس از ستÙÙ Ú©ÙØ§Ø±ÛØ ØšÙ ØšØ®ØŽ 'Tor' ؚرÙÛØ¯. در ÙØ³Ù
ت 'ÙŸÙÙâÙØ§' تÛÚ© "
-"گزÛÙÙâÛ 'Ø§Ø³ØªÙØ§Ø¯Ù از ÙŸÙÙ' را ÙØ¹Ø§Ù کرد٠٠از Ù
ÙÙÛ Ú©ØŽÙÛÛØ ؚر رÙÛ Ú¯Ø²ÛÙÙ: 'Ø§ÙØªØ®Ø§Øš"
-" ٟ٠درÙÙÛ Ù
Ø±ÙØ±Ú¯Ø±' Ú©ÙÛÚ© Ú©Ø±Ø¯Ù Ù ÙØ± ÙÙØ¹Û از ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ± را Ú©Ù Ù
ÛâØ®ÙØ§ÙÛØ¯"
-" Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"ٟس از Ø¢ÙÚ©Ù ÛÚ©Û Ø§Ø² اÙÙØ§Ø¹ ØØ§Ù
Ù ÙØ§Û Ø§ØªØµØ§Ù ÙŸØ°ÛØ± Ù
ÙØ±Ø¯ Ø¹ÙØ§ÙÙ Ø®ÙØ¯ØªØ§Ù را Ø§ÙØªØ®Ø§Øš "
-"Ú©Ø±Ø¯ÛØ¯Ø ؚر رÙÛ Ø¯Ú©Ù
Ù 'اتصاÙ' Ú©ÙÛÚ© Ú©ÙÛØ¯ تا ØªÙØžÛÙ
ات Ø°Ø®ÛØ±Ù ØŽÙÙØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -860,28 +901,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"اگر ØšØ±Ø§Û ÙØ®Ø³ØªÛ٠ؚار است Ú©Ù Ù
Û Ø®ÙØ§ÙÛØ¯ ÛÚ© ارتؚاط Ø³Ø§ÙØ³Ùر ؎د٠را Ø¯ÙØ± ؚزÙÛØ¯Ø ÙÛØ§Ø²"
-" است تا ÛÚ©Û Ø§Ø² اÙÙØ§Ø¹ obfs4 ÛØ§ Snowflake Ù ÛØ§ meek-azure را آزÙ
Ø§ÛØŽ Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"اگر ÙÙ
ÙâÛ Ø§Û٠گزÛÙÙâÙØ§ را اÙ
ØªØØ§Ù Ú©Ø±Ø¯ÛØ¯ ÙÙÛ ÙÛÚکداÙ
از Ø¢ÙâÙØ§ ØŽÙ
ا را ؚ٠"
-"اÛÙØªØ±Ùت ÙØµÙ ÙÚ©Ø±Ø¯Ø ØšØ§ÛØ¯ آدرس ٟ٠را ØšÙ ØµÙØ±Øª Ø¯Ø³ØªÛ ÙØ§Ø±Ø¯ Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"âïž ØšØ±Ø§Û Ø¢Ú¯Ø§ÙÛ Ø§Ø² اÛÙÚ©Ù ÙŸÙ ÚÛØ³Øª Ù ÚÚ¯ÙÙÙ ØšØ§ÛØ¯ آ٠را Ø¯Ø±ÛØ§Ùت Ú©Ø±Ø¯Ø ØšÙ ØšØ®ØŽ "
-"[ÙŸÙâÙØ§](/fa/bridges/) Ù
راجع٠کÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -981,44 +1016,46 @@ msgstr "### â Ø§Ø³ØªÙاد٠از MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"اگر Ù
Ø±ÙØ±Ú¯Ø± Tor را ØšØ±Ø§Û ÙØ®Ø³ØªÛ٠ؚار اجرا Ù
ÛâÚ©ÙÛØ¯Ø ؚر رÙÛ Ø¯Ú©Ù
Ù 'ÙŸÛÚ©Ø±ØšÙØ¯Û' Ú©ÙÛÚ© "
-"Ú©ÙÛØ¯ تا ÙŸÙØ¬Ø±ÙâÛ ØªÙØžÛÙ
ات ØŽØšÚ©Ù Tor ؚاز ØŽÙØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"در ØºÛØ± اÛÙ ØµÙØ±ØªØ در Ù
ÙÙÛ ÙÙ
ØšØ±Ú¯Ø±Û (Ù
ÙÙÛ Ø§ØµÙÛ) ؚر رÙÛ 'ØªÙØžÛÙ
ات' Ú©ÙÛÚ© کرد٠٠ؚÙ"
-" ؚخ؎ 'Tor' ؚرÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"در ÙŸÙØ¬Ø±ÙâÛ ØªÙØžÛÙ
ات ØŽØšÚ©Ù TorØ Ú¯Ø²ÛÙÙâÛ 'Tor در Ú©ØŽÙØ± Ù
Ù Ø³Ø§ÙØ³Ùر ؎د٠است.' را "
-"Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"سٟس گرÛÙÙâÛ 'Ø¯Ø±Ø®ÙØ§Ø³Øª ٟ٠از torproject.org' را Ø§ÙØªØ®Ø§Øš ٠ؚر رÙÛ 'Ø¯Ø±Ø®ÙØ§Ø³Øª "
-"ÙŸÙ...' Ú©ÙÛÚ© Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
-"CAPTCHA - تصÙÛØ± اÙ
ÙÛØªÛ ÙÙ
Ø§ÛØŽ Ø¯Ø§Ø¯Ù ØŽØ¯Ù - را کاÙ
٠کرد٠٠ؚر رÙÛ Ø¯Ú©Ù
Ù 'Ø¯Ø±Ø®ÙØ§Ø³Øª'"
-" Ú©ÙÛÚ© Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1046,25 +1083,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"اگر Ù
Ø±ÙØ±Ú¯Ø± Tor را ØšØ±Ø§Û ÙØ®Ø³ØªÛ٠ؚار اجرا Ù
ÛâÚ©ÙÛØ¯Ø ؚر رÙÛ Ø¯Ú©Ù
Ù 'ÙŸÛÚ©Ø±ØšÙØ¯Û' Ú©ÙÛÚ© "
-"Ú©ÙÛØ¯ تا ÙŸÙØ¬Ø±ÙâÛ ØªÙØžÛÙ
ات ØŽØšÚ©Ù Tor ؚاز ØŽÙØ¯ Ù ÛØ§ در Ù
ÙÙÛ ÙÙ
ØšØ±Ú¯Ø±Û (Ù
ÙÙÛ Ø§ØµÙÛ) ؚر"
-" رÙÛ 'ØªÙØžÛÙ
ات' Ú©ÙÛÚ© کرد٠٠ؚ٠ؚخ؎ 'Tor' ؚرÙÛØ¯ تا ؚ٠اÛ٠گزÛÙÙâÙØ§ Ø¯Ø³ØªØ±Ø³Û ÙŸÛØ¯Ø§"
-" Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"در ؚخ؎ 'ÙŸÙâÙØ§'Ø ØªÛÚ© گزÛÙÙâÛ 'Ø§Ø³ØªÙØ§Ø¯Ù از ÙŸÙ' را زد٠٠گزÛÙÙâÛ 'Ø§Ø³ØªÙØ§Ø¯Ù از ÛÚ© "
-"ٟ٠ک٠آدرس آ٠را Ù
Û Ø¯Ø§ÙÙ
' را Ø§ÙØªØ®Ø§Øš Ú©ÙÛØ¯. سٟس ÙØ± آدرس ٟ٠را در ÛÚ© خط جداگاÙÙ"
-" ÙØ§Ø±Ø¯ Ú©ÙÛØ¯."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1693,6 +1728,8 @@ msgstr "ÚÚ¯ÙÙÙ Ù
Ø±ÙØ±Ú¯Ø± Tor را ØšØ±ÙØ²Ø±Ø³Ø§ÙÛ Ú©ÙÛØ¯"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1881,6 +1918,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### â Ù
ØŽÚ©ÙØ§Øª ØŽÙØ§Ø®ØªÙ ؎دÙ"
@@ -2276,6 +2315,821 @@ msgstr ""
"* ØšÙ Ø·ÙØ± Ø®Ø§ØµØ ØšÛØª ØªÙØ±Ùت [ؚر رÙÛ TorØ ÙØ§ØŽÙاس ÙÙ
Û "
"ؚا؎د](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"رÙÙ ÙØ§Û ÙŸÙÛ Ø¯Ø± ØªÙØ± رÙÙ ÙØ§ÛÛ ÙØ³ØªÙد ک٠در ÙÙØ±Ø³Øª راÙÙÙ
Ø§Û ØªÙØ± ÙŸÛØ¯Ø§ ÙÛØ³ØªÙد."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"ÙŸÙ ÙØ§ ؚ٠درد کارؚراÙÛ Ù
ÛâØ®ÙØ±Ùد Ú©Ù ØÚ©ÙÙ
ت Ø³Ø±Ú©ÙØšÚ¯Ø±Û ØšØ§ÙØ§Û سر Ø¯Ø§Ø±ÙØ¯ ÛØ§ کساÙÛ Ú©Ù "
+"Ù
ÛâØ®ÙØ§ÙÙØ¯ ÙØ§ÛÙâÛ ØÙØ§ØžØªÛ Ø¯ÛÚ¯Ø±Û Ø¯Ø§ØŽØªÙ ØšØ§ØŽÙØ¯ تا Ú©Ø³Û Ø§Ø² اتصا٠آÙÙØ§ ØšÙ ÙØŽØ§ÙÛ IP "
+"ÛÚ© رÙÙâÛ ÙÙ
گاÙÛ Ø¢Ú¯Ø§Ù ÙØŽÙد."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Ù
ا ÛÚ© ØšØ±ÙØ§Ù
Ù iOS را ØšÙ ÙØ§Ù
Ù
Ø±ÙØ±Ú¯Ø± Onion ØªÙØµÛÙ Ù
Û Ú©ÙÛÙ
Ú©Ù Ù
ت٠ؚاز ØšÙØ¯Ù ٠از "
+"Ù
Ø³ÛØ±ÛØ§ØšÛ Tor Ø§Ø³ØªÙØ§Ø¯Ù Ù
Û Ú©ÙØ¯ Ù ØªÙØ³Ø· ØŽØ®ØµÛ ØªÙØ³Ø¹Ù داد٠؎د٠است ک٠ؚا ٟرÙÚÙ Tor "
+"ÙÙ
Ú©Ø§Ø±Û ÙØ²Ø¯ÛÚ©Û Ø¯Ø§Ø±Ø¯."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"ÙØ±ÚÙØ¯Ø اٟ٠از Ù
Ø±ÙØ±Ú¯Ø± ÙØ§Û رÙÛ iOS Ù
Û Ø®ÙØ§Ùد تا از ÚÛØ²Û ØšÙ ÙØ§Ù
Webkit Ø§Ø³ØªÙØ§Ø¯Ù "
+"Ú©ÙÙØ¯ ک٠اÛ٠ؚاعث Ù
Û ØŽÙØ¯ تا Onion Browser ÙØ§Ùد ÙÙ
ا٠Ù
ÛØ²Ø§Ù Ù
ØØ§Ù؞ت ØØ±ÛÙ
Ø®ØµÙØµÛ "
+"Ú©Ù Ù
Ø±ÙØ±Ú¯Ø± ØªÙØ± Ø§ÙØ¬Ø§Ù
Ù
ÛØ¯Ùد ؚا؎د."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[درؚار٠Onion Browser ØšÛØŽØªØ± ÛØ§Ø¯ ØšÚ¯ÛØ±Ûد](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Onion Browser را از [اٟ Ø§Ø³ØªÙØ±](https://itunes.apple.com/us/app/onion-"
+"browser/id519296448) داÙÙÙØ¯ Ú©ÙÛØ¯."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"ÙÙ
اکÙÙÙ ÙÛÚ Ø±ÙØŽ ÙŸØŽØªÛØšØ§ÙÛ ØŽØ¯Ù Ø§Û ØšØ±Ø§Û Ø§Ø¬Ø±Ø§ ØªÙØ± رÙÛ Ú¯ÙØŽÛ ÙÛÙØ¯Ùز ÙØ¬Ùد ÙØ¯Ø§Ø±Ø¯."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2423,13 +3277,13 @@ msgstr "اکÙÙÙ Ø§ÙØ¯Ø§Ø¡ Ú©ÙÛØ¯"
msgid "Give today, and Mozilla will match your donation."
msgstr "ÙÙ
Û٠اÙ
Ø±ÙØ² Ú©Ù
Ú© Ú©ÙÛØ¯Ø ØšÙÛØ§Ø¯ Ù
ÙØ²ÛÙØ§ ؚا Ú©Ù
Ú© ÙØ§Û Ù
اÙÛ ØŽÙ
ا ر؎د Ø®ÙØ§Ùد کرد."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "ØšØ§Ø±Ú¯ÛØ±Û Ù
Ø±ÙØ±Ú¯Ø± Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2437,11 +3291,11 @@ msgstr ""
"ØšØ±Ø§Û ØªØ¬Ø±ØšÙ Ú©Ø±Ø¯Ù ÛÚ© ÙØšÚ¯Ø±Ø¯Û Ø®ØµÙØµÛ ؚدÙÙ Ø±Ø¯ÛØ§ØšÛØ ÙØžØ§Ø±Øª Ù Ø³Ø§ÙØ³ÙØ±Ø Ù
Ø±ÙØ±Ú¯Ø± Tor را "
"داÙÙÙØ¯ Ú©ÙÛØ¯. "
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Ù
اÙ
ÙØ±Ûت Ù
ا:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2453,33 +3307,33 @@ msgstr ""
"ØšØ±Ø§Û Ø¯Ø± دسترس ØšÙØ¯Ù Ù Ø§Ø³ØªÙØ§Ø¯Ù از Ø¢Ù ÙØ§ ٠راÙÙÙ
اÛÛ ØšÙ Ù
ردÙ
در Ø¬ÙØª درک عÙÙ
Û Ø§ÛÙ"
" ÙÙØ§ÙØ±Û ÙØ§."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Ú©Ù
Ú© Ù
اÙÛ"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "اکÙÙÙ Ø§ÙØ¯Ø§Ø¡ Ú©ÙÛØ¯"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ا؎تراک در Ø®ØšØ±ÙØ§Ù
Ù"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ØšÙ Ø±ÙØ²Ø±Ø³Ø§ÙÛ ÙØ§ Ù ÙØ±ØµØª ÙØ§Û Ù
Ø§ÙØ§Ù٠را از ٟرÙÚÙ Tor Ø¯Ø±ÛØ§Ùت Ú©ÙÛØ¯:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "عضÙÛØª"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+fr.po b/contents+fr.po
index 14aacb7fa0..25a0a2a7ea 100644
--- a/contents+fr.po
+++ b/contents+fr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: AO <ao(a)localizationlab.org>, 2020\n"
"Language-Team: French (https://www.transifex.com/otf/teams/1519/fr/)\n"
@@ -80,8 +80,8 @@ msgstr "Téléchargement"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Premier lancement du Navigateur Tor "
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -100,8 +100,8 @@ msgstr "Ponts"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gérer les identités"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -147,13 +147,20 @@ msgstr "ProblÚmes connus"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Devenir traducteur de Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Rendre le Navigateur Tor portable."
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -581,6 +588,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -600,13 +609,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Si votre connexion est plutÃŽt rapide, mais que cette barre dâétat semble "
-"bloquée à un certain niveau, consultez la page "
-"[Dépannage](/fr/troubleshooting) pour y trouver de lâaide afin de régler le "
-"problÚme."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -621,58 +626,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Si vous savez que votre connexion est censurée ou utilise un mandataire, "
-"vous devriez sélectionner cette option. Le Navigateur Tor vous présentera "
-"une série dâoptions de configuration."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Le premier écran demande si lâaccÚs au réseau Tor est bloqué ou censuré sur "
-"votre connexion. Si vous ne pensez pas que câest le cas, sélectionnez « Non "
-"». Si vous savez que votre connexion est censurée ou si vous avez tenté sans"
-" succÚs de vous connecter au réseau Tor et quâaucune autre solution nâa "
-"fonctionné, sélectionnez « Oui ». Lâécran "
-"[Contournement](/fr/circumvention/) apparaîtra alors afin que vous "
-"configuriez un transport enfichable."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Le prochain écran vous demande si votre connexion utilise un mandataire. "
-"Dans la plupart des cas, ce nâest pas nécessaire. Vous saurez habituellement"
-" si vous devez répondre « Oui », car les mêmes paramÚtres seront utilisés "
-"pour les autres navigateurs de votre systÚme. Si possible, posez la question"
-" à votre administrateur réseau. Si votre connexion nâutilise pas de "
-"mandataire, cliquez sur « Se connecter »."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -769,13 +794,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Les transports meek donnent lâimpression que vous parcourez un grand site "
-"Web au lieu dâutiliser Tor. meek-azure donne lâimpression que vous utilisez "
-"un site Web de Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -815,38 +837,53 @@ msgstr "### UTILISER DES TRANSPORTS ENFICHABLES"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Pour utiliser un transport enfichable, cliquez sur « Configurer » quand le "
-"Navigateur Tor démarre pour la premiÚre fois. Dans la fenêtre qui apparaît, "
-"sélectionnez dans le menu déroulant le transport affichable que vous "
-"souhaitez utiliser."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Ou, si le Navigateur Tor est en cours dâexécution, cliquez sur « Préférences"
-" » dans le menu â¡, puis sur « Tor » dans la barre latérale. Dans la section "
-"« Ponts », cochez la case « Utiliser un bon » et à partir du menu déroulant "
-"« Sélectionner un pont intégré », choisissez le transport enfichable que "
-"vous souhaitez utiliser."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Une fois que vous avez sélectionné le transport enfichable que vous "
-"souhaitez utiliser, cliquez sur « Se connecter » pour enregistrer vos "
-"paramÚtres."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -867,29 +904,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Si vous essayez de contourner pour la premiÚre fois une connexion bloquée, "
-"vous devriez essayer les différents transports : obfs4, Snowflake et meek-"
-"azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Si vous avez essayé toutes ces options et quâaucune ne vous permet de vous "
-"connecter, vous devrez saisir manuellement des adresses de pont."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Consultez la page [Les ponts](/fr/bridges) pour découvrir ce que sont les "
-"ponts et comment en obtenir."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -988,42 +1018,46 @@ msgstr "### UTILISER MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Si vous lancez le Navigateur Tor pour la premiÚre fois, cliquez sur « "
-"Configurer » pour ouvrir la fenêtre des paramÚtres du réseau Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Sinon, cliquez sur « Préférences » dans le menu ⡠(menu principal), puis sur"
-" « Tor » dans la barre latérale."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Dans la fenêtre ParamÚtres du réseau Tor, sélectionnez « Tor est censuré "
-"dans mon pays »."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Sélectionnez ensuite « Demander un pont à torproject.org » et cliquez sur « "
-"Demander un pontâŠÂ »"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Répondez au captcha et cliquez sur « Envoyer »."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1051,25 +1085,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Si vous démarrez le Navigateur Tor pour la premiÚre fois, cliquez sur « "
-"Configurer » pour ouvrir la fenêtre des paramÚtres du réseau Tor. Sinon, "
-"cliquez sur « Préférences » dans le menu ⡠(menu principal), puis sur « Tor "
-"» dans la barre latérale pour accéder à ces options."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Dans la section « Ponts », cochez « Utiliser un pont », puis sélectionnez « "
-"Utiliser un pont que je connais » et saisissez chaque adresse de pont sur "
-"une ligne séparée."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1712,6 +1744,8 @@ msgstr "Mettre le Navigateur Tor à jour"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1901,6 +1935,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLÃMES CONNUS"
@@ -2299,6 +2335,821 @@ msgstr ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea) (page "
"en anglais)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Les relais ponts sont des relais Tor qui ne sont pas listés dans lâannuaire "
+"public de Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Les ponts sont utiles pour les utilisateurs de Tor sous le joug de régimes "
+"oppressifs, et pour ceux qui veulent une couche supplémentaire de sécurité "
+"parce quâils sâinquiÚtent que quelquâun puisse découvrir quâils contactent "
+"lâadresse IP dâun relais Tor public."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Nous recommandons une appli pour iOS appelée Navigateur Onion, qui est à "
+"code source ouvert, utilise le routage de Tor et développée par quelquâun "
+"qui collabore étroitement avec le Projet Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Cependant, Apple exige que sur iOS, les navigateurs utilisent quelque chose "
+"appelé « Webkit » qui empêche au Navigateur Onion de proposer la même "
+"protection de la confidentialité et des données personnelles que le "
+"Navigateur Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Il nâexiste actuellement aucun moyen pris en charge pour utiliser Tor sur "
+"Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2446,13 +3297,13 @@ msgstr "FAITES UN DON MAINTENANT"
msgid "Give today, and Mozilla will match your donation."
msgstr "Faites un don aujourdâhui et Mozilla fera un don équivalent."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Télécharger le Navigateur Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2461,11 +3312,11 @@ msgstr ""
"vraiment votre vie privée et vos données personnelles, sans pistage, ni "
"surveillance, ni censure."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Notre mission :"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2478,35 +3329,35 @@ msgstr ""
"aussi leur disponibilité et leur utilisation sans restriction en les faisant"
" mieux connaître des scientifiques et du public."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Faire un don"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Faire un don maintenant"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Sâabonner à notre lettre dâinformation"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Recevez les mises à jour mensuelles du Projet Tor et les occasions quâil "
"offre :"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Sâabonner"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ga.po b/contents+ga.po
index fc9627d2fb..0741cc1e23 100644
--- a/contents+ga.po
+++ b/contents+ga.po
@@ -1,15 +1,15 @@
# Translators:
# Kevin Scannell <kscanne(a)gmail.com>, 2019
-# erinm, 2019
# Emma Peel, 2020
+# erinm, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: erinm, 2020\n"
"Language-Team: Irish (https://www.transifex.com/otf/teams/1519/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,8 +78,8 @@ msgstr "Ãoslódáil"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "An chéad uair a úsáideann tú Brabhsálaà Tor"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Droichid"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Aitheantais a bhainistiú"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,12 +145,19 @@ msgstr "Fadhbanna ar eolas"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Eolas maidir le haistriúchán Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -536,6 +543,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -551,7 +560,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -568,51 +577,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Má tá a fhios agat go bhfuil do cheangal faoi chinsireacht, nó má úsáideann "
-"sé seachfhreastalaÃ, ba chóir duit é seo a roghnú. Treoróidh Brabhsálaà Tor "
-"trÃd an bpróiseas cumraÃochta thú."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"FiafraÃtear dÃot ar an chéad scáileán eile an úsáideann do cheangal "
-"seachfhreastalaÃ. NÃl seachfhreastalaà ag teastáil an chuid is mó den am, "
-"agus dá mbeadh sé ag teastáil uaitse, is dócha go mbeadh a fhios agat "
-"cheana, toisc gur ghá na socruithe céanna a úsáid leis na brabhsálaithe eile"
-" ar do chóras. Más féidir, cuir ceist ar riarthóir do lÃonra. Mura "
-"n-úsáideann do cheangal seachfhreastalaÃ, cliceáil âAr Aghaidhâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -700,9 +736,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -743,25 +779,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -780,21 +843,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -882,33 +945,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -935,17 +1010,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1516,6 +1596,8 @@ msgstr "Conas Brabhsálaà Tor a nuashonrú"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1692,6 +1774,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2045,6 +2129,820 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Is éard atá i nDroichead ná athsheachadán Tor nach bhfuil liostáilte san "
+"eolaire poiblà Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Tá droichid úsáideach d'úsáideoirà Tor ina gcónaà i dtÃortha faoi réimeas "
+"leatromach, nó dóibh siúd ar mhaith leo sraith bhreise slándála toisc go "
+"bhfuil imnà orthu go n-aithneofar go bhfuil siad ag baint úsáide as seoladh "
+"IP ceangailte le hathsheachadán poiblà Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Is féidir. Molaimid aip iOS darb ainm Onion Browser. Tá an cód oscailte, "
+"úsáideann sé ródúchán Tor, agus oibrÃonn an prÃomhfhorbróir i ndlúthpháirt "
+"le Tionscadal Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"ÃilÃonn Apple go n-úsáidfidh gach brabhsálaà ar iOS an t-inneall Webkit, "
+"agus dá bharr sin nÃl Onion Browser chomh héifeachtach le Brabhsálaà Tor ó "
+"thaobh prÃobháideachais."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"NÃl aon bhealach oifigiúil ann faoi láthair chun Tor a úsáid ar Windows "
+"Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2166,23 +3064,23 @@ msgstr ""
"Tabhair sÃntiús airgid inniu agus tabharfaidh Mozilla an méid céanna arÃs "
"dúinn."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Ãoslódáil Brabhsálaà Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "An aidhm atá againn:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2190,33 +3088,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Tabhair sÃntiús airgid"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Tabhair sÃntiús airgid anois"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Liostáil lenár Nuachtlitir"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr ""
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+he.po b/contents+he.po
index dfa630e700..932716fdf5 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: ION, 2020\n"
"Language-Team: Hebrew (https://www.transifex.com/otf/teams/1519/he/)\n"
@@ -79,8 +79,8 @@ msgstr "××ך××"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "××€×¢× ×ך×ש×× × Tor ×ך׊ת ××€××€×"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -99,8 +99,8 @@ msgstr "×שך××"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "× ×××× ×××××ת"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -146,12 +146,19 @@ msgstr "ס××××ת ××××¢×ת"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tor ××€××× ×× ×תך××"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -532,6 +539,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -547,7 +556,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -564,52 +573,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"×× ××ª× ××××¢ ש×××××š× ×׊×× ×ך, ×× ×שת×ש ××××€××ÖŸ×××, ×¢××× ××××ך ××׀שך×ת ××. "
-"××€××€× Tor ××¢××ך ×××ª× ××š× ×¡×ךת ×׀שך×××ת ת׊×ך×."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
-"×××¡× ×ך×ש×× ×©××× ×× ××××©× ×ךשת tor ×ס××× ×× ×׊×× ×ךת ×××××ך ש××. ×× ××× × "
-"×××××/× ×©×× ××קך×, ת××ך/× ××. ×× ×ת/× ××××¢/ת ש××××ך ×׊×× ×ך, ×× ×©× ×ס×ת ××× "
-"×׊××ת ××ת××ך ×ךשת tor, ×××£ ×€×תך×× ××ך ×× ×¢××, ת××ך/× ××. תת×קש/× ×××××§× × - "
-"[Circumvention](/circumvention) ××× ××׊×ך תע×××š× × ×ª××§×."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"×××¡× ××× ×©××× ×× ×××××š× ×שת×ש ××××€××ÖŸ×××. ×ך×× ××קך××, ×× ×××ª× × ×××¥. ××\"× "
-"ת××¢ ×× ××ª× ×Š×š×× ××¢× ×ת â××â, ×× ×××ª× ×××ך×ת ×××× ×ש×××ש ×¢××ך ××€××€× ×× ××ך×× "
-"××עך×ת ש××. ×× ×׀שך×, ×קש ××ך×× ×××× ××× ×ךשת ש××. ×× ×××××š× ××× × ×שת×ש "
-"××××€××ÖŸ×××, ×××¥ ×¢× â××ש×â."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -697,9 +732,9 @@ msgstr "×¢× ××"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -739,25 +774,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -776,21 +838,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -874,33 +936,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -927,17 +1001,22 @@ msgstr "×ך××¢ ש×ש×ת ×ס׀ך ×ת×××ת ×שך××, ת׊××š× ×××
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1501,6 +1580,8 @@ msgstr "Tor ×××Š× ××¢××× ×ת ××€××€×"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1666,6 +1747,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ס××××ת ××××¢×ת"
@@ -2008,6 +2091,810 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"×× ×× × ××××׊×× ×¢× ××ש×× iOS ×× ×§×š× Onion Browser, ש××× ×§×× ×€×ª××, ××שת×ש ×× ×ת××"
+" Tor, ×××× ××€××ª× ×¢\"× ××ש×× ×©×¢××× ×׊××š× ×§×š××× ×¢× ××××× Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"××¢××ת ××ת, Apple ××ךשת ×××€××€× ×× ×¢× iOS ××שת×ש ××ש×× ×©× ×§×š× Webkit, ×שך ××× ×¢ "
+"×× Onion Browser ××§×× ×ת ×××ª× ××× ×ת ×׀ך×××֌ת ××× ××€××€× Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "××× ×ך××¢ ש××× × ×ª××ת ×¢××ך ×ך׊ת Tor ×¢× Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2127,23 +3014,23 @@ msgstr "תך×× ×¢×ש××"
msgid "Give today, and Mozilla will match your donation."
msgstr "×ª× ××××, ×ÖŸMozilla תש××× ×ת תך××ת×."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "×××š× ×ת ××€××€× Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "××ש××× ×©×× ×:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2151,33 +3038,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "תך××"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "תך×× ×¢×ש××"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "×××š×©× ××× ×× ×××××¢×× ×©×× ×"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "×§×× ×¢×××× ×× ×××ש××× ×××××× ×××ת ××××× Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "××ךש×"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+hr.po b/contents+hr.po
index 4be0883d36..d241d41865 100644
--- a/contents+hr.po
+++ b/contents+hr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: milotype <mail(a)milotype.de>, 2020\n"
"Language-Team: Croatian (https://www.transifex.com/otf/teams/1519/hr/)\n"
@@ -79,8 +79,8 @@ msgstr "Preuzimanje"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Prvo pokretanje Tor preglednika"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -99,8 +99,8 @@ msgstr "Mostovi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Upravljanje identitetitma"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -146,13 +146,20 @@ msgstr "Poznati problemi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Kako postati Tor prevodilac"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Kako uÄiniti Tor preglednik prenosivim"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -565,6 +572,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -584,12 +593,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Ako si na relativno brzoj vezi, ali ti se Äini da se ova traka u odreÄenom "
-"trenutku zaglavila, pogledaj stranicu [Otklanjanje "
-"problema](/troubleshooting) za pomoÄ u rjeÅ¡avanju problema."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -604,55 +610,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Ako znaš da je tvoja veza cenzurirana ili ako koristiš proxy, odaberi ovu "
-"opciju. Tor preglednik Äe te provesti kroz seriju konfiguracijskih opcija."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Na prvom se ekranu postavlja pitanje je li pristup Tor mreÅŸi blokiran ili "
-"cenzuriran na tvojoj vezi. Ako misliÅ¡ da tome nije tako, odaberi âNeâ. Ako "
-"znaš da je tvoja veza cenzurirana ili ako si se bezuspješno pokušao/la "
-"povezati s Tor mreÅŸom i ako niti jedno drugo rjeÅ¡enje ne radi, odaberi âDaâ."
-" Potom ÄeÅ¡ biti preusmjeren/a na ekran [ZaobilaÅŸenje](/circumvention) za "
-"konfiguriranje prikljuÄnog transporta."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"SljedeÄi ekran pita, koristiÅ¡ li proxy na svojoj vezi. U veÄini sluÄajeva, "
-"proxy nije potreban. Znat ÄeÅ¡ kada trebaÅ¡ odgovoriti s âDaâ, jer se iste "
-"postavke primijenjuju na sve druge preglednike na tvom sustavu. Ako moşeš, "
-"pitaj svog mreÅŸnog administratora za pomoÄ. Ako tvoja veza ne podrÅŸava "
-"proxy, pritisni âNastaviâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -746,9 +775,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -786,35 +815,53 @@ msgstr "### KORIÅ TENJE PRIKLJUÄNIH TRANSPORTA"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Za koriÅ¡tenje prikljuÄnog transporta, pritisni âKonfigurirajâ prilikom prvog"
-" pokretanja Tor preglednika. U prozoru koji se pojavi, iz padajuÄeg "
-"izbornika odaberi ÅŸeljeni prikljuÄni transport."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Ili, ako je Tor preglednik pokrenut, pritisni âPostavkeâ u ikoni izbornika, "
-"a zatim âTorâ u boÄnoj traci. U odjeljku âMostoviâ, potvrdi okvir âKoristi "
-"mostâ, a u padajuÄem izborniku âOdaberi ugraÄeni mostâ, odaberi ÅŸeljeni "
-"prikljuÄni transport."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Nakon Å¡to odabereÅ¡ ÅŸeljeni prikljuÄni transport, pritisni âPoveÅŸi seâ kako "
-"bi se postavke spremile."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -835,28 +882,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Ako po prvi put pokuÅ¡avaÅ¡ zaobiÄi blokiranu vezu, pokuÅ¡aj razne transporte: "
-"obfs4, snowflake o meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Ako pokuÅ¡aÅ¡ sve ove opcije, a nijedna te ne poveÅŸe s internetom, morat ÄeÅ¡ "
-"upisati adrese mosta ruÄno."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"ProÄitaj odjeljak [Mostovi](/en-US/bridges/) i saznaj Å¡to su mostovi te kako"
-" ih dobiti."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -954,40 +995,46 @@ msgstr "### KAKO KORISTITI MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Kad prvi put pokreneÅ¡ Tor preglednik, pritisni âKonfigurirajâ za otvaranje "
-"prozora postavki Tor mreÅŸe."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"InaÄe pritisni âPostavkeâ u ikoni izbornika (glavni izbornik), a zatim âTorâ"
-" u boÄnoj traci."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"U prozoru postavki Tor mreÅŸe odaberi âTor je cenzuriran u mojoj drÅŸaviâ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Zatim odaberi âZatraÅŸi most od torproject.orgâ i pritisni âZatraÅŸi most âŠâ"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "RijeÅ¡i CAPTCHA i pritisni âPoÅ¡aljiâ."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1013,23 +1060,23 @@ msgstr "Kad pribaviÅ¡ par adresa mostova, morat ÄeÅ¡ ih upisati u Tor pokretaÄ
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Kad prvi put pokreneÅ¡ Tor preglednik, pritisni âKonfigurirajâ za otvaranje "
-"prozora postavki Tor mreÅŸe. InaÄe pritisni âPostavkeâ u ikoni izbornika "
-"(glavni izbornik), a zatim âTorâ u boÄnoj traci."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"U odjeljku âMostoviâ potvrdi opciju âKoristi mostâ, a zatim odaberi âPruÅŸi "
-"mi most koji poznamâ i upiÅ¡i svaku adresu mosta u zaseban redak."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1584,6 +1631,8 @@ msgstr "Kako aktualizirati Tor preglednik"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1762,6 +1811,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### POZNATI PROBLEMI"
@@ -2131,6 +2182,806 @@ msgstr ""
"* BitTorrent izriÄito [nije anoniman preko Tora](https://blog.torproject.org"
"/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2268,13 +3119,13 @@ msgstr "DONIRAJ SADA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Donirajte danas i Mozilla Äe dati jednaku donaciju."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Kako preuzeti Tor preglednik"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2282,11 +3133,11 @@ msgstr ""
"Preuzmi Tor preglednik za doÅŸivljavanje istinske privatnosti tijekom "
"pregledavanja interneta, bez praÄenja, nadzora i cenzure."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Naša misija:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2298,33 +3149,33 @@ msgstr ""
"neograniÄenu dostupnost i uporabu, i unapreÄivanjem njihovog znanstvenog i "
"popularnog razumijevanja."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doniraj"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Doniraj sada"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Pretplati se na naš bilten"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Dobij mjeseÄne novosti i moguÄnosti od projekta Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Prijavi se"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+hu.po b/contents+hu.po
index 9956e44f68..803f672c02 100644
--- a/contents+hu.po
+++ b/contents+hu.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Emma Peel, 2020\n"
"Language-Team: Hungarian (https://www.transifex.com/otf/teams/1519/hu/)\n"
@@ -81,8 +81,8 @@ msgstr "Letöltés"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "A Tor Browser elsŠfuttatása"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -101,8 +101,8 @@ msgstr "Hidak"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Az identitások kezelése"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -148,13 +148,20 @@ msgstr "Ismert problémák"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tor fordÃtóvá válás"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "A Tor böngészŠhordozhatóvá tétele"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -554,6 +561,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -569,7 +578,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -586,49 +595,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Ha tudja, hogy a kapcsolata cenzúrázott, vagy proxy-t használ, válassza ezt "
-"a lehetÅséget. A Tor Browser importálja a szÃŒkséges beállÃtásokat."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"A következŠképernyŠmegkérdezi, hogy proxyt használ-e. A legtöbb esetben ez"
-" nem szÃŒkséges. Ãltalában tudni fogja, hogy válaszolnia kell-e az âIgenâ "
-"-re, mivel ugyanazokat a beállÃtásokat használják a rendszer többi "
-"böngészÅjéhez. Ha lehetséges, forduljon a hálózati rendszergazdához. Ha a "
-"kapcsolat nem használ proxy-t, kattintson a âFolytatásâ gombra."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -716,9 +754,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -756,25 +794,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -793,21 +858,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -891,33 +956,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -943,17 +1020,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1460,6 +1542,8 @@ msgstr "A Tor Browser frissÃtése"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1626,6 +1710,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1959,6 +2045,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2078,23 +2964,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "Adjon ma és a Mozilla is annyival támogat."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Tor Browser letöltése"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "KÌldetésÌnk:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2102,33 +2988,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Támogatás"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Támogasson most"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Iratkozzon fel hÃrlevelÃŒnkre"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Regisztráció"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+id.po b/contents+id.po
index 2b89f37327..7c9f9eafe3 100644
--- a/contents+id.po
+++ b/contents+id.po
@@ -2,19 +2,19 @@
# Muhammad Yusuf <myusuffin(a)gmail.com>, 2018
# Cadas Propopuli Azzam Baribin <cadas.propopuli(a)gmail.com>, 2019
# ical, 2019
-# erinm, 2019
# Robert Dafis <robertdafis(a)gmail.com>, 2019
# cuna <cunaxc(a)gmail.com>, 2019
# Emma Peel, 2020
# Joshua P, 2020
+# erinm, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Joshua P, 2020\n"
+"Last-Translator: erinm, 2020\n"
"Language-Team: Indonesian (https://www.transifex.com/otf/teams/1519/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -83,8 +83,8 @@ msgstr "Mengunduh"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Menjalankan Tor Browser untuk pertama kali"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -103,8 +103,8 @@ msgstr "Jembatan-jembatan"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Mengelola identitas"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -150,13 +150,20 @@ msgstr "Persoalan yang telah diketahui"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Menjadi Penerjemah Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Buat Tor Browser mudah dibawa"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -567,6 +574,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -582,7 +591,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -599,57 +608,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Jika Anda tahu bahwa koneksi Anda disensor, atau menggunakan proksi, Anda "
-"harus memilih opsi ini. Tor Browser akan membawa Anda melalui serangkaian "
-"pilihan konfigurasi."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Layar pertama menanyakan jika akses ke jaringan Tor di blokir atau di sensor"
-" pada koneksi anda. Jika anda tidak yakin hal ini menjadi kasus, pilih "
-"\"No\". Jika anda mengetahui bahwa jaringan di sensor, atau anda mencoba dan"
-" gagal terhubung dengan jaringan Tor dan tidak ada yang lain yang berhasil, "
-"pilih \"yes\". Anda akan dibawa pada [circumvention](/id/circumvention) "
-"layar untuk mengkonfigurasi pluggable transport"
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Layar selanjutnya menanyakan jika koneksi Anda menggunakan sebuah proksi. "
-"Pada banyak kasus, hal ini tidak diperlukan. Biasanya Anda akan mengetahui "
-"jika Anda perlu menjawab \"Ya\", sebagaimana pada pengaturan yang digunakan"
-" oleh peramban lain pada sistem anda. Jika memungkinkan, tanyakan pengelola "
-"jaringan untuk panduan. Jika koneksi Anda tidak menggunakan sebuah proksi, "
-"klik \"Lanjut\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -737,9 +767,9 @@ msgstr "lunak"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -780,25 +810,52 @@ msgstr "### MENGGUNAKAN PLUGGABLE TRANSPORT"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -817,29 +874,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Jika Anda mencoba mengelak dari koneksi yang diblokir untuk pertama kali, "
-"Anda perlu mencoba pluggable transport yang berbeda: obfs4, snowflake, dan "
-"meek-azure"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Jika anda mencoba semua opsi yang tersedia, dan tidak ada yang membuat anda "
-"daring, anda oerlu untuk memasukkan alamat jembatan secara manual."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Baca bagian [Jembatan-jembatan](/id/bridges/) untuk mempelajari apa itu "
-"jembatan dan bagaimana mendapatkannya."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -929,35 +979,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Jika Anda memulai Tor Browser untuk pertama kalinya, klik 'Konfigurasi' "
-"untuk membuka laman Pengaturan Jaringan Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -986,17 +1046,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1614,6 +1679,8 @@ msgstr "Cara untuk memperbarui Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1793,6 +1860,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2149,6 +2218,820 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Jembatan relay adalah Tor relay yang tidak tercantum dalam direktori Tor "
+"publik."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Jembatan berguna bagi pengguna Tor di bawah rezim yang menindas, dan bagi "
+"orang-orang yang menginginkan lapisan keamanan tambahan karena mereka "
+"khawatir seseorang akan mengenali bahwa saat mereka menghubungi alamat IP "
+"relay Tor publik."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Kami merekomendasikan aplikasi IOS bernama Onion Browser, yang berlisensi "
+"open source, yang menggunakan jaringan Tor, dan dikembangkan oleh pihak yang"
+" bekerja-sama secara dekat dengan Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Namun, Apple mengharuskan peramban di IOS untuk menggunakan Webkit, yang "
+"menghalangi Onion Browser memiliki tingkat pelrindungan privasi yang sama "
+"dengan Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Saat ini ada tidak ada metode yang didukung untuk menjalankan Tor pada "
+"Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2268,13 +3151,13 @@ msgstr "DONASI SEKARANG"
msgid "Give today, and Mozilla will match your donation."
msgstr "Beri hari ini dan Mozilla akan mencocokkan hadiah anda."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Unduh Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2282,11 +3165,11 @@ msgstr ""
"Unduh Tor Browser untuk pengalaman penjelajahan privat yang sesungguhnya "
"tanpa pelacakan, pengawasan, atau penyensoran."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Misi kami:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2298,33 +3181,33 @@ msgstr ""
"ketersediaan dan penggunaan tak terbatas mereka, dan memajukan pemahaman "
"ilmiah dan populer mereka."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donasi"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donasi Sekarang"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Berlangganan Newsletter kami"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Dapatkan pembaruan bulanan dan peluang dari Proyek Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Daftar"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+is.po b/contents+is.po
index 18ecb7173e..6a7f163c0d 100644
--- a/contents+is.po
+++ b/contents+is.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Sveinn à Felli <sv1(a)fellsnet.is>, 2020\n"
"Language-Team: Icelandic (https://www.transifex.com/otf/teams/1519/is/)\n"
@@ -77,8 +77,8 @@ msgstr "Niðurhal"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Að keyra Tor-vafrann à fyrsta skipti"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -97,7 +97,7 @@ msgstr "BrÜr"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
+msgid "Managing Identities"
msgstr "SÜsl með persónuauðkenni"
#: https//tb-manual.torproject.org/menu/
@@ -144,12 +144,19 @@ msgstr "Ãekkt vandamál"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Að gerast Tor-ßÜðandi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -547,6 +554,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -562,7 +571,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -579,58 +588,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Ef ßú veist að tengingin ßÃn sé ritskoðuð, eða notar millißjón (proxy), "
-"Êttirðu að velja ßennan valkost. Tor-vafrinn mun ßá fara með ßér à gegnum "
-"röð af valkostum uppsetningar."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"à fyrsta skjánum er spurt hvort Tor-netið sé hindrað eða ritskoðað á "
-"nettengingunni ßinni. Ef ßú heldur að ßað sé ekki tilfellið, skaltu velja "
-"âNeiâ. Ef ßú veist að nettengingin ßÃn sé ritskoðuð, eða ef ßú hefur ßegar "
-"prófað og ekki tekist að tengjast Tor-netinu og engar aðrar lausnir hafa "
-"virkað, skaltu velja âJáâ. Ãá verður ßú fluttur yfir á skjáinn "
-"[Hjáleiðir](/circumvention) til að setja upp tengileið (pluggable "
-"transport)."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"à nÊsta skjá er spurt hvort tengingin ßÃn noti millißjón (proxy). à flestum "
-"tilfellum er ßað ekki nauðsynlegt. Venjulega myndirðu vita ef ßú Êttir að "
-"svara âJáâ, ßvà sömu stillingar munu vera notaðar fyrir aðra vafra á kerfinu"
-" ßÃnu. Ef ßað er mögulegt, Êttirðu að spyrja kerfisstjóra netkerfisins um "
-"ßessar stillingar. Ef tengingin ßÃn notar ekki millißjón, skaltu smella á "
-"âHalda áframâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -723,13 +752,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek tengileiðir eru allar að lÃkja eftir vafri á stórum ßekktum vefsvÊðum "
-"ßrátt fyrir að vera að nota Tor. meek-azure lÊtur lÃta út eins og ßú sért að"
-" nota vefsvÊði hjá Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -768,25 +794,52 @@ msgstr "### NOTKUN 'PLUGGABLE TRANSPORT' TENGILEIÃA"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -805,21 +858,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -906,33 +959,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -959,17 +1024,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1591,6 +1661,8 @@ msgstr "Hvernig á að uppfÊra Tor-vafrann"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1775,6 +1847,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2152,6 +2226,819 @@ msgstr ""
"* BitTorrent er dÊmi um hugbúnað ßar sem umferð er [ekki nafnlaus à gegnum "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Brúarendurvarpar eru Tor-endurvarpar sem ekki eru skráðir à opinberu Tor-"
+"endurvarpaskrána."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"BrÜr eru nytsamlegar fyrir ßá notendur Tor sem búa við kúgunarstjórn og "
+"fyrir fólk sem vill bÊta við öryggislagi vegna ßess að ßað hefur áhyggjur af"
+" að gÊti einhver komist að ßvà að ßað sé að tengjast við opinbert IP-"
+"vistfang á Tor-endurvarpa."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Við mÊlum með iOS-forriti sem kallast Onion Browser, sem er með opnum "
+"grunnkóða, notar beiningu à gegnum Tor, og er ßróað af aðilum sem vinna náið"
+" með Tor-verkefninu."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Hinsvegar; Apple krefst ßess að vafrar á iOS-stÜrikerfinu noti Webkit, sem "
+"kemur à veg fyrir að Onion Browser geti verið með alveg sömu varnir fyrir "
+"persónuupplÜsingar eins og Tor-vafrinn veitir."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Ekki er vitað um neina áreiðanlega aðferð við að keyra Tor á Windows sÃmum."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2271,13 +3158,13 @@ msgstr "STYRKJA NÃNA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Gefðu à dag - og Mozilla mun jafna framlag ßitt."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "SÊktu Tor-vafrann"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2285,11 +3172,11 @@ msgstr ""
"SÊktu Tor-vafrann til að upplifa raunverulegt einkavafur án eftirlits, "
"skráningar á hegðun ßinni eða ritskoðun."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Markmið okkar:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2302,35 +3189,35 @@ msgstr ""
"sé eitt markmiðanna að stuðla að bÊttum almennum og vÃsindalegum skilningi á"
" ßessum málum."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Styrkja"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Styrkja núna"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Gerstu áskrifandi að fréttabréfinu okkar"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Fáðu mánaðarlegar tilkynningar um uppfÊrslur og Ümsa möguleika frá Tor-"
"verkefninu:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Skráðu ßig"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+it.po b/contents+it.po
index a5abf52932..0cd5486677 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -4,23 +4,23 @@
# mattia_b89 <mattia.b89(a)gmail.com>, 2019
# Hiro 7 <hiro(a)torproject.org>, 2019
# Fabio Ottone, 2019
-# erinm, 2019
# SebastianoPistore <SebastianoPistore.info(a)protonmail.ch>, 2019
# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2019
# Thomas Di Cristofaro <inactive+ThomasDiCristofaro(a)transifex.com>, 2019
-# Luke <94lukecatellani(a)gmail.com>, 2019
# fabio carletti <fabiocarlettiryuw(a)gmail.com>, 2019
# Emma Peel, 2020
# Random_R, 2020
# Davide Sant <spuuu(a)outlook.it>, 2020
+# erinm, 2020
+# Luke <94lukecatellani(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Davide Sant <spuuu(a)outlook.it>, 2020\n"
+"Last-Translator: Luke <94lukecatellani(a)gmail.com>, 2020\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"
@@ -89,8 +89,8 @@ msgstr "Download"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Avviare il browser Tor per la prima volta"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -109,8 +109,8 @@ msgstr "Ponti"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gestire le identità "
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -156,13 +156,20 @@ msgstr "Problemi conosciuti"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Diventare un traduttore Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Rendere Tor Browser portatile"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -583,6 +590,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -602,12 +611,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Se stai utilizzando una connessione relativamente veloce, ma questa barra a "
-"un certo punto sembra bloccarsi, guarda la pagina [Risoluzione "
-"problemi](/it/troubleshooting) per ricevere assistenza. "
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -622,57 +628,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Se sapete che la vostra connessione Ú censurata, o utilizza un proxy, "
-"scegliete questa opzione. Il browser Tor vi guiderà attraverso una serie di "
-"opzioni di configurazione."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"La prima schermata chiede se l'accesso alla rete Tor Ú bloccato o censurato "
-"nella tua connessione. Se non Ú questo il tuo caso scegli \"No\". Se te già "
-"sai che la rete Ú censurata, o la connessione alla rete Tor Ú fallita, "
-"scegli \"SI\". Sarai reindirizzato alla schermata "
-"[Elusione](/it/circumvention) per configurare una via di connessione "
-"differente (pluggable transport)."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"La schermata seguente vi domanderà se la vostra connessione utilizza un "
-"proxy. Nella maggior parte dei casi questo non Ú necessario. Dovreste sapere"
-" se rispondere \"Sì\", in quanto sono gli stessi parametri utilizzati dagli "
-"altri browser internet sul vostro sistema. Se possibile, contattate il "
-"vostro amministratore di sistema per informazioni. Se la vostra connessione "
-"non usa proxy cliccate \"Continua\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -770,13 +797,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Tutti i meek transport fanno sembrare che stai navigando su un sito Web "
-"famoso invece di utilizzare Tor. meek-azure fa sembrare che tu stia "
-"utilizzando un sito Web Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -815,36 +839,53 @@ msgstr "### USARE I PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Per utilizzare un pluggable transport, clicca 'Configura' quando avvii Tor "
-"Browser per la prima volta. Nella finestra che appare, dal menu a discesa, "
-"seleziona il pluggable transport che desideri utilizzare."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Oppure, se Tor Browser Ú in esecuzione, fai clic su \"Preferenze\" nel menu "
-"hamburger e quindi su \"Tor\" nella barra laterale. Nella sezione "
-"\"Bridge\", seleziona la casella \"Usa un bridge\" e dal menu a discesa "
-"\"Seleziona un bridge incorporato\", scegli il pluggable transport che "
-"desideri utilizzare."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Dopo aver selezionato il pluggable transport, fai clic su \"Connetti\" per "
-"salvare le impostazioni."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -864,28 +905,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Se stai cercando di aggirare una connessione bloccata per la prima volta, "
-"dovresti provare i diversi trasport: obfs4, snowflake e meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Se provi tutte queste opzioni e nessuna di esse ti connette, dovrai inserire"
-" manualmente gli indirizzi bridge."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Leggi la sezione [Bridges](/en-US/bridges/) per imparare cosa sono i bridge "
-"e come ottenerli."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -984,42 +1019,46 @@ msgstr "### USARE MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Se stai avviando Tor Browser per la prima volta, fai clic su \"Configura\" "
-"per aprire la finestra Impostazioni di Rete Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Altrimenti, fai clic su \"Preferenze\" nel menù hamburger (menù principale) "
-"e poi su \"Tor\" nella barra laterale."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Nella finestra Impostazioni Rete Tor, seleziona \"Tor Ú censurato nel mio "
-"Paese\"."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Quindi, seleziona \"Richiedi un bridge da torproject.org\" e fai clic su "
-"\"Richiedi un bridge...\""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Completa il CAPTCHA e clicca \"Invia\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1047,25 +1086,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Se stai avviando Tor Browser per la prima volta, fai clic su \"Configura\" "
-"per aprire la finestra Impostazioni Rete Tor. Altrimenti, fai clic su "
-"\"Preferenze\" nel menù hamburger (menù principale) e quindi su \"Tor\" "
-"nella barra laterale per accedere a queste opzioni."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Nella sezione \"Bridge\", seleziona la casella \"Usa un bridge\", quindi "
-"seleziona \"Fornisci un bridge che conosco\" e inserisci l'indirizzo di "
-"ciascun bridge su una riga separata."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1700,6 +1737,8 @@ msgstr "Come aggiornare Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1888,6 +1927,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLEMI NOTI"
@@ -2278,6 +2319,824 @@ msgstr ""
"* BitTorrent nello specifico [non Ú reso anonimo tramite "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"I relay ponti sono dei relay che non sono indicati nell'elenco pubblico di "
+"Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"I ponti sono utili per gli utenti Tor che si trovano in regimi oppressivi e "
+"per le persone che desiderano avere un livello aggiuntivo di sicurezza "
+"perché sono preoccupati che qualcuno possa accorgersi che si stanno "
+"connettendo ad un indirizzo IP di un relay pubblico di Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Noi raccomandiamo di utilizzare un'applicazione iOS chiamata Onion Browser, "
+"che Ú open source, utilizza Tor ed Ú sviluppata da una persona che collabora"
+" strattemente con il Progetto Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Tuttavia, Apple richiede ai browser che girano su iOS di utilizzare una cosa"
+" chiamata Webkit, che impedisce a Onion Browser di avere le stesse "
+"protezioni per la privacy di Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Scopri di più riguardo l'Onion Browser](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Scarica Onion Browser dall'[App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Al momento non esistono metodi supportati per fare funzionare Tor su Windows"
+" Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2419,13 +3278,13 @@ msgstr "DONA ORA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Dai oggi, e Mozilla ricambierà la tua donazione."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Scarica Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2433,11 +3292,11 @@ msgstr ""
"Scarica Tor Browser per provare la vera navigazione privata senza "
"tracciamento, sorveglianza o censure."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "La nostra missione:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2449,33 +3308,33 @@ msgstr ""
"privacy, favorendone l'ampia disponibilità ed utilizzo e promuovendone la "
"comprensione scientifica e popolare."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Dona"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Dona Adesso"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Iscriviti alla nostra Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Ricevi aggiornamenti mensili e altre occasioni dal Progetto Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Iscriviti"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ja.po b/contents+ja.po
index 6795dcf819..49c37be690 100644
--- a/contents+ja.po
+++ b/contents+ja.po
@@ -8,14 +8,14 @@
# h345u37g3 h345u37g3, 2019
# maruyuki <contact(a)maruyuki.net>, 2019
# Emma Peel, 2020
-# Agent Exe <sw.172.135.9.xxx.l62118102(a)gmail.com>, 2020
+# Agent exe <sw.172.135.9.xxx.l62118102(a)gmail.com>, 2020
# 987 pluto <pluto987(a)protonmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: 987 pluto <pluto987(a)protonmail.com>, 2020\n"
"Language-Team: Japanese (https://www.transifex.com/otf/teams/1519/ja/)\n"
@@ -86,8 +86,8 @@ msgstr "ããŠã³ããŒã"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor BrowserãåããŠå®è¡"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -106,8 +106,8 @@ msgstr "ããªããž"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "èå¥åã®ç®¡ç"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -153,13 +153,20 @@ msgstr "æ¢ç¥ã®åé¡"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Torã®ç¿»èš³ãå©ãã"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Torãã©ãŠã¶ãããŒã¿ãã«ã«ããããš"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -539,6 +546,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -554,10 +563,9 @@ msgstr "ã¯ãªãã¯ãããããToræ¥ç¶ã®é²è¡ã衚瀺ããã¹ããŒã¿
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"é«éåç·ã§ããã¹ããŒã¿ã¹ããŒã¯è¡ãè©°ãŸãããã«èŠããå Žåãåé¡ã解決ããã®ã«[ãã©ãã«ã·ã¥ãŒãã£ã³ã°](/troubleshooting)ããŒãžãèŠãŠäžããã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -572,52 +580,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"ããããªãã®æ¥ç¶ãæ€é²ãããŠãããšãæ°ã¥ããªãã°ããŸãã¯ãããã·ãã䜿ããªãããã®ãªãã·ã§ã³ãéžæããã¹ãã§ããTorãã©ãŠã¶ãããªãããªãã·ã§ã³è«žèšå®ãžãæ¡å
ããŸãã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"æåã®ç»é¢ã§ã¯ãTorãããã¯ãŒã¯ãžã®ã¢ã¯ã»ã¹ãåœå®¶ãIPSããããã€ããŒã«ãã£ãŠããããã¯ãŸãã¯æ€é²ãããŠãããåŠããå°ããããŸãã\n"
-"ãããã¯ãæ€é²ããªããšæãããå Žåã¯ãããããããéžæããŸãã\n"
-"æ¥ç¶ãæã¡åãããŠããããšãããã£ãŠããå ŽåããŸãã¯Torãããã¯ãŒã¯ãžã®æ¥ç¶ã詊ã¿ãŠå€±æããä»ã®ãœãªã¥ãŒã·ã§ã³ãæ©èœããªãå Žåã¯ããã¯ãããéžæããŸãã\n"
-"次ã«ã[è¿å]ïŒ/è¿åïŒç»é¢ã«ç§»åããŠãæ¥ç¶å¯èœããªãã©ã³ã¹ããŒããèšå®ããŸãã\n"
-"ããããæ¥æ¬ã§ã¯ãã®æäœãè¡ãå¿
èŠã¯ãªããšæãããŸããã§ãããäžåœããã«ã³ããã·ã¢ãªã©ã®åœã§ã¯ãã®æäœãå¿
èŠãšãªãå¯èœæ§ããããŸãã"
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"次ã®ç»é¢ã§ã¯ãæ¥ç¶ã®éã«ãããã·ã䜿çšãããã©ãããå°ããããŸãã\n"
-"ã»ãšãã©ã®å Žåããã®æäœã¯å¿
èŠãããŸããã\n"
-"éåžžãã·ã¹ãã äžã®ä»ã®ãã©ãŠã¶ã«ãåãèšå®ã䜿çšãããããããã¯ãããšçããå¿
èŠããããã©ãããããããŸãã\n"
-"å¯èœã§ããã°ããããã¯ãŒã¯ç®¡çè
ã«æç€ºãæ±ããŠãã ãããæ¥ç¶ã§ãããã·ã䜿çšããªãå Žåã¯ã\"ç¶è¡\"ãã¯ãªãã¯ããŸãã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -708,12 +742,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"æåãªãã©ã³ã¹ããŒãã¯ãã¹ãŠãTorã䜿çšãã代ããã«äž»èŠãªWebãµã€ããé²èЧããŠããããã«èŠããŸãã meek-azureã¯ãMicrosoft "
-"Webãµã€ãã䜿çšããŠããããã«èŠããŸãã"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -752,30 +784,53 @@ msgstr "䜿çšå¯èœãªãã©ã³ã¹ããŒãã®çš®é¡"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"ãã©ã°å¯èœãªãã©ã³ã¹ããŒãã䜿çšããã«ã¯ãTor BrowserãåããŠèµ·åãããšãã«ãæ§æããã¯ãªãã¯ããŸãã\n"
-"衚瀺ããããŠã£ã³ããŠã§ãããããããŠã³ã¡ãã¥ãŒããã䜿çšãããã©ã°å¯èœãªãã©ã³ã¹ããŒããéžæããŸãã"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"ãŸãã¯ãTor Browserãå®è¡ããŠããå Žåã¯ããã³ããŒã¬ãŒã¡ãã¥ãŒã®\"èšå®\"ãã¯ãªãã¯ãããµã€ãããŒã®\"Tor\"ãã¯ãªãã¯ããŸãã "
-"\"ããªããž\"ã»ã¯ã·ã§ã³ã§ã\"ããªããžã䜿çš\"ã®ãã§ãã¯ããªã³ã«ãã\"çµã¿èŸŒã¿ããªããžãéžæ\"ããããããŠã³ã¡ãã¥ãŒããã䜿çšãããã©ã°å¯èœãªãã©ã³ã¹ããŒããéžæããŸãã"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr "䜿çšãããã©ã°å¯èœãªãã©ã³ã¹ããŒããéžæãããã\"æ¥ç¶\"ãã¯ãªãã¯ããŠèšå®ãä¿åããŠäžããã"
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -795,24 +850,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"ãã¡ã€ã¢ãŠã©ãŒã«ãªã©ã«ãã£ãŠããããã¯ãããæ¥ç¶ãåããŠåé¿ããããšããŠããå Žåã¯ãobfs4ãsnowflakeãmeek-"
-"azureã詊ããŠãã ããã"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr "ãããã®ãªãã·ã§ã³ããã¹ãŠè©ŠããŠããªã³ã©ã€ã³ã«ãªããªãå Žåã¯ãããªããžã¢ãã¬ã¹ãæåã§å
¥åããå¿
èŠããããŸãã"
+"need to request a bridge or manually enter bridge addresses."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr "\"Bridges\"ïŒ/ en-US/bridges/ïŒã»ã¯ã·ã§ã³ãèªãã§ãããªããžãšã¯äœãããããŠããããèšå®ããæ¹æ³ãåŠãã§ãã ããã"
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -902,34 +955,46 @@ msgstr "### MOATã®äœ¿ç𿹿³"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr "Tor BrowserãåããŠèµ·åããå Žåã¯ããæ§æããã¯ãªãã¯ããŠTorãããã¯ãŒã¯èšå®ãŠã£ã³ããŠãéããŸãã"
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr "åããŠã®èµ·ååºãªãå Žåã¯ããã³ããŒã¬ãŒã¡ãã¥ãŒïŒã¡ã€ã³ã¡ãã¥ãŒïŒã®ãèšå®ããã¯ãªãã¯ãããµã€ãããŒã®ãTorããã¯ãªãã¯ããŸãã"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr "ãTorãããã¯ãŒã¯èšå®ããŠã£ã³ããŠã§ããTorãããã¯ãŒã¯ã¯ç§ã®åœã§æ€é²ãããŠããããéžæããŸãã"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr "次ã«ããtorproject.orgããããªããžããªã¯ãšã¹ãããéžæãããããªããžããªã¯ãšã¹ã...ããã¯ãªãã¯ããŸãã"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "CAPTCHAãå®äºããŠããéä¿¡ããã¯ãªãã¯ããŸãã"
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -955,21 +1020,23 @@ msgstr "ããªããžã¢ãã¬ã¹ãååŸããããããããTorã©ã³ãã£
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Tor BrowserãåããŠèµ·åããå Žåã¯ããæ§æããã¯ãªãã¯ããŠTorãããã¯ãŒã¯èšå®ãŠã£ã³ããŠãéããŸãã\n"
-"åããŠã§ã¯ãªãå Žåã¯ããã³ããŒã¬ãŒã¡ãã¥ãŒïŒã¡ã€ã³ã¡ãã¥ãŒïŒã®ãèšå®ããã¯ãªãã¯ãããµã€ãããŒã®ãTorããã¯ãªãã¯ããŠãããã®ãªãã·ã§ã³ã«ã¢ã¯ã»ã¹ããŸãã"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"ãããªããžãã»ã¯ã·ã§ã³ã§ããããªããžã䜿çšãããã®ãã§ãã¯ããã¯ã¹ããªã³ã«ããŠããç¥ã£ãŠããããªããžãæäŸããããéžæããŠãåããªããžã¢ãã¬ã¹ãå¥ã
ã®è¡ã«å
¥åããŸãã"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1513,6 +1580,8 @@ msgstr "Tor Browser ãã¢ããããŒãããã«ã¯"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1683,6 +1752,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### æ¢ç¥ã®åé¡"
@@ -2028,6 +2099,806 @@ msgstr ""
"* ç¹ã« BitTorrent 㯠[Tor ã䜿çšããŠãå¿åã§ã¯ãããŸãã](https://blog.torproject.org"
"/bittorrent-over-tor-isnt-good-idea)ã"
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2152,23 +3023,23 @@ msgstr "å¯ä»ãã"
msgid "Give today, and Mozilla will match your donation."
msgstr "å¯ä»ããé¡ãããŸããMozillaã¯ããªãã®å¯ä»ã«è£åããŸããã"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Tor Browser ãããŠã³ããŒã"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr "Tor Browser ãããŠã³ããŒãããŠã远跡ãç£èŠãæ€é²ãªãã®çã®ãã©ã€ããŒããã©ãŠãžã³ã°ãäœæããŸãããã"
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "ç§ãã¡ã®ããã·ã§ã³:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2177,33 +3048,33 @@ msgid ""
msgstr ""
"ããªãŒã»ãªãŒãã³ãœãŒã¹ã®å¿åæ§æè¡ã»ãã©ã€ãã·ãŒæè¡ã®éçºãšå±éã«ãã£ãŠäººæš©ãšèªç±ãåäžãããã®å¶éãããªãæå¹æ§ãšå©çšãæ¯æŽãããŸãã人ã
ã®æ£ç¢ºãªçè§£ãä¿é²ããã"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "å¯ä»"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ä»ããå¯ä»"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ãã¥ãŒã¹ã¬ã¿ãŒã®è³Œèª"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Tor Project ããã®æ¯æã®æŽæ°ããç¥ããããå±ãããŸãã"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "ç»é²"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ka.po b/contents+ka.po
index 6818cd0382..60270b16dd 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Georgianization, 2020\n"
"Language-Team: Georgian (https://www.transifex.com/otf/teams/1519/ka/)\n"
@@ -78,8 +78,8 @@ msgstr "á©áááá¢ááá ááá"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor-áá áá£ááá áá¡ ááá ááááá ááášáááá"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "ááááááªááá á®ááááá"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "áááááááá¡ áááááªáááááá¡ ááá ááá"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,13 +145,20 @@ msgstr "áªáááááá á®áá áááááá"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "ááá®ááá Tor-áá¡ áááá áááááá"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor-áá áá£ááá á á¡áá¢áá ááááá"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -569,6 +576,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -588,12 +597,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"áᣠášáááá áááá á¡á¬á áá€á ááá¢áá ááá¢á ááá¥áá áá ááááá¡ ášááá¡ááá ááááááááá áá á ááááááá, "
-"áá®áááá [ááá£ááá áááááá¡ ááŠááá€á®áá áá¡](/ka/troubleshooting) áááá áá, ááá®ááá áááá¡ "
-"ááá¡ááŠáááá á®áá ááááá¡ ááááá¡á¬áá áááá¡áááá¡."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -608,57 +614,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"áᣠááªáá á áá áá¥áááá áááášáá á áªáááá£á áá¡ á¥ááášáá áá áá áá¥á¡áá¡ áá§ááááá¡, ááášáá "
-"á£áá¯áááá¡áá áá ááá áááá¢áá¡ áá á©ááá. Tor-áá áá£ááá á ááááá«áŠááááá ááá áááá£áá á¡áá®áá¡ "
-"ááá áááá¢á áááá¡ ááá¡áááá ááá."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"ááá ááá á€ááá¯áá áášá ááááá©ááááá ášááááá®áá, áá áá¡ áᣠáá á Tor-á¥á¡ááááá áááášáá á "
-"ášáááŠá£áá£áá áá áªáááá£á áá¡ á¥áááš. áᣠá€áá¥á ááá á áá áá¡á áá áá, ááá á©ááá âáá áâ. áᣠááªáá "
-"á áá áá¥áááá áááášáá á áªáááá£á áá¡ áá¥áááááááá ááá áá á¡áªáááá áááááášáá ááá Tor-á¥á¡ááááá,"
-" áááá áá ááá ááá®áá á®áá áá ááá ᪠á¡á®áá ááááá¬á§ááá¢áááá á£ášáááá, ááá á©ááá âáááá®â. áááá¡"
-" ášáááááá, áá¥ááá ááááááá¡áááá áááááá [áááá ááá¡ ááááá¡](/ka/circumvention) "
-"á€ááá¯áá ááá, ááá¡ááá áááááá áááááá§ááááááá¡ ááá¡áááá ááá."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"áááááááá ááá áááá áá¥áááá ášááááá®áá, áá§ááááá¡ áᣠáá á áá¥áááá áááášáá á áá áá¥á¡áá¡. "
-"á®ášáá ášáááá®ááááášá, áá¡ áá£áªááááááá áá áá. á©ááá£áááá áá, áá¥ááá áá¡ááá᪠áááªáááááááá, "
-"áᣠâáááá®â ááá¡á£á®áá¡ ááááááááá á¡áááá á, áááááááá ááááá ááá áááá¢á ááá áá¥áááá "
-"ááááá§ááááá£áá á¡áá¡á¢áááášá, á¡á®áá áá áá£ááá áááá. áᣠášáá¡áá«ááááááá, áááá¡áá£áá áá áá¥áááá"
-" á¥á¡áááá¡ áááááá®áááááá¡ ááááá¢ááááá ááááááááááá¡áááá¡. áᣠáá¥áááá áááášáá á áá "
-"áá§ááááá¡ áá áá¥á¡áá¡, ááá¬ááááá âáááá á«áááááááâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -756,13 +783,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek-áááááá§áááááá áááááªááá£á áááááªááááá¡ áá«áááá¡ áá¡áá á¡áá®áá¡, áááá¥áá¡ Tor-á¥á¡áááá "
-"á¡áá áááááááá¡ áááªáááá, áªááááá á¡ááá¢ááá¡ áááááááá ááá. meek-azure á¬áá áááá©ááá¡ áá¡á, "
-"áááá¥áá¡ Microsoft-áá¡ ááááááá¡áá®á£á ááááá¡ á£áááášáá ááááá."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -802,35 +826,53 @@ msgstr "### ááá¡ááá áááááá áááááá§áááá
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"ááá¡ááá áááááá áááááá§ááááá á¡áá áááááááá¡áááá¡, ááá¬ááááá âááááá áááá¡â áŠááááá¡, Tor-"
-"áá áá£ááá áá¡ ááá áááá ááášááááá¡áá¡. ááááá¡á£á á€ááá¯áá ááá, á©áááá¡áášáááá ááááá£ááá "
-"ááá á©ááá á¡áá¡á£á áááá ááá¡ááá áááááá áááááá§ááááááááá á ááááááá."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"áá, áᣠá£ááá ááášáááá£áá ááá¥áá Tor-áá áá£ááá á, ááá¬ááááá âááá áááá¢á áááâ áááááá á "
-"ááááá£ááá áá ášááááá âTorâ áááá áááá ááááááá. âá®áááááá¡â áááá§áá€áááááášá, ááááášááá"
-" âá®áááá¡ ááááá§áááááâ áá á©áááá¡áášáááá ááááá£ááá âá©áášááááá£áá ááááááªááá á®áááá¡ "
-"ááááááááâ ááá á©ááá á¡áá¡á£á áááá ááá¡ááá áááááá áááááá§áááá."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"á¡áááá á ááá¡ááá áááááá áááááá§ááááá¡ áá á©áááá¡ ášáááááá, ááá¬ááááá áŠáááááá "
-"âáááááášáá áááâ ááá áááá¢á áááá¡ ášáá¡áááá®áá."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -851,28 +893,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"áᣠááá ááááá áªáááááá ášáááŠá£áá£áá á¥á¡áááá¡áááá¡ áááá ááá¡ ááááá¡, á¯áááá ááá¡ááá¯áá "
-"á¡á®ááááá¡á®áá á¡áá®áá¡ áááááá§áááááá: obfs4, snowflake áá meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"áᣠáªááá á§áááá ááááááá¡ áá ááá áªáá áá ááá áááááááášáá ááá ááá¢áá ááá¢ááá, áááááá ááááá"
-" ááááááªááá á®áááá¡ ááá¡áááá ááááá¡ á®áááá áááááááá."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"á¬áááááá®áá [á®áááááá¡](/ka/bridges/) ášáá¡áá®áá áááá§áá€ááááá áá ášááá¢á§ááá, áᣠá áá¡ "
-"á¬áá áááááááá¡ á®ááááá áá á áááá á®áááá áááá áááááááá."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -973,41 +1009,46 @@ msgstr "### á áááá áááááá§ááááá MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"áᣠááá ááááá á£ášáááá Tor-áá áá£ááá á¡, ááá¬ááááá âááááá áááá¡â Tor-á¥á¡áááá¡ "
-"ááá áááá¢á áááá¡ á€ááá¯á áá¡ ááá¡áá®á¡ááááá."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"á¡á®áá ášáááá®ááááášá, ááá¬ááááá âááá áááá¢á áááâ áááááá ááááá£ášá áá ášááááá âTorâ "
-"áááá ááá ááááá."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Tor-á¥á¡áááá¡ ááá áááá¢á áááá¡ á€ááá¯áá áášá, ááá á©ááá âTor ášáááŠá£áá£ááá á©ááá¡ á¥ááá§áááášáâ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"ášááááá ááá£ááááá âááááááªááá á®áááá¡ áááá®áááá á¡ááá¢áááá torproject.orgâ áá "
-"ááá¬ááááá âá®áááá¡ áááá®áááá...â"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "ášááá¡á á£ááá CAPTCHA áá ááá¬ááááá âááááááááâ."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1035,25 +1076,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"áᣠááá ááááá á£ášáááá Tor-áá áá£ááá á¡, ááá¬ááááá âááááá áááá¡â Tor-á¥á¡áááá¡ "
-"ááá áááá¢á áááá¡ á€ááá¯á áá¡ ááá¡áá®á¡ááááá. á¡á®áá ášáááá®ááááášá, ááá¬ááááá âááá áááá¢á áááâ "
-"áááááá ááááá£ášá áá ášááááá âTorâ áááá ááá ááááá, áááªááá£á ááá áááá¢á áááá "
-"á¬áááááá¡áááá¡."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"áááá§áá€áááááášá âá®áááááâ, ááááášááá âá®áááá¡ ááááá§áááááâ, ášááááá áá ááá á©ááá "
-"âáááªáááá ááááááªááá á®áááá¡ ááááááááâ áá ášááá§ááááá áááááá£áá á®áááá¡ ááá¡áááá áá, "
-"áá®áá á®áááá."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1685,6 +1724,8 @@ msgstr "á áááá ááááááá®ááá Tor-áá áá£ááá
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1870,6 +1911,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### áªáááááá á®áá áááááá"
@@ -2262,6 +2305,823 @@ msgstr ""
"* BitTorrent ááááááá ááá á£áá á£ááááá§áá€á¡ [áááááááá¡ ááá£áá®áááááá¡ Tor-"
"áá](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"ááááááªááá á®ááááá á¬áá áááááááá¡ Tor-ááááááªááááá¡, á áááááá᪠áá áá ááŠáá£á¡á®á£áá "
+"á¡áá¯áá áá Tor-á¡ááášá."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"ááááááªááá á®ááááá ááááá¡áááááá Tor-áá¡ áá áááá®ááá ááááááá¡áááá¡, á áááááá᪠"
+"ááá§áá€ááááá á¡áá®áááá¡á£á€áááá áá ááááááááá ááá¬áááá¡ á¥áááš áá áá¡áááá ááááá ááááá¢ááááá"
+" áááªáá, á ááááá á€áá¥á áááá á áá ášáá¡áá«ááá áááááªááá, Tor-ááááááªáááá¡ á¡áá¯áá áá áªááááá"
+" IP-ááá¡áááá áááá áááááášáá áááá¡áá¡."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"á©ááá ááá á©ááá iOS-áá ááá áááá¡ á¡áá®ááá¬áááááá Onion Browser, á ááááá᪠áŠáá á¬á§áá áá¡áá,"
+" áá§ááááá¡ Tor-áááášáá á¡ áá ášááá£ášááááá£ááá áá ááá ááááááá¡ áááá , á ááááá¡ á¡áá¥ááááááááª"
+" ááá¢áá áá®ááá¡áá Tor-áá ááá¥á¢ááá."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"áá£ááªá, Apple ááááá®ááá¡, á áá iOS-áá áá á¡ááá£áá áá áá£ááá ááá áá£áªááááááá áá§ááááááá¡ "
+"Webkit-á¡, á á᪠áá áá«áááá¡ Onion-áá áá£ááá á¡ áá¡ááááá á£á¡áá€á áá®ááááá¡ ááááá¡ áááŠá¬áááá¡ "
+"á¡áášá£áááááá¡, á áááá á᪠Tor-áá áá£ááá ášáá."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[áá®áááá áá áªááá, Onion Browser-áá¡ ášáá¡áá®áá](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"á©áááá¢ááá ááá Onion Browser [App Store-áááá](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"ááááááá áá áá á ááá áá®áá ááááá ááá ááá, Tor-áá¡ ááá¡áášááááá Windows Phone-áá."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2407,13 +3267,13 @@ msgstr "ááááŠáá áááá®á"
msgid "Give today, and Mozilla will match your donation."
msgstr "ááááªáá ááŠáá¡áá áá Mozilla ááááá áááááá¡ áá¥áááá¡ ášáááá¬áá á£ááááá¡."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "á©áááá¢ááá ááá Tor-áá áá£ááá á"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2421,11 +3281,11 @@ msgstr ""
"á©áááá¢ááá ááá Tor-áá áá£ááá á áááááááá ááá ááá ááááááá áááá¡ á áááááá¡ ááááá¡ááªááááá, "
"áááááá¡ áááááááá¡, áááááá®ááááááááá¡á áá áªáááá£á áá¡ ááá áášá."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "á©áááá áááááá:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2439,33 +3299,33 @@ msgstr ""
"áááááášáá áááá, áááªáááá á£áá ááááááá¡á áá á¡ááááááááááá¡ áªáááááá áááá¡ ááááá¡ "
"ááááŠááááá."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ášáááá¬áá á£áááá"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ááááŠáá áááá®á"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "áááááá¬áá áá á©áááá á¡ááá®áááááá¡ áªááááá á"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ááááŠáá á¡ááá®ááááá áá áªáááááá Tor-áá ááá¥á¢áá¡ááá:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "ááááá¬áá á"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ko.po b/contents+ko.po
index f16502f3d0..a397cd2abe 100644
--- a/contents+ko.po
+++ b/contents+ko.po
@@ -1,16 +1,17 @@
# Translators:
# park seungbin <parksengbin48(a)gmail.com>, 2019
-# erinm, 2019
# Johnny Cho <popeye92(a)gmail.com>, 2019
# Emma Peel, 2020
+# erinm, 2020
+# Philipp Sauter <qt123(a)pm.me>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: Philipp Sauter <qt123(a)pm.me>, 2020\n"
"Language-Team: Korean (https://www.transifex.com/otf/teams/1519/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -79,8 +80,8 @@ msgstr "ë€ìŽë¡ë"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor Browser륌 ì²ì ì¬ì©í©ëë€"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -99,8 +100,8 @@ msgstr "ì€ê³ìë²"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "ê°ìžì 볎 êŽëЬ"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -146,12 +147,19 @@ msgstr "ìë €ì§ ë¬žì "
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tor ë²ìì ëì죌Ʞ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -514,6 +522,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -529,7 +539,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -546,42 +556,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -669,9 +715,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -709,25 +755,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -746,21 +819,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -842,33 +915,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -893,17 +978,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1385,6 +1475,8 @@ msgstr ""
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1535,6 +1627,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ìë €ì§ ìŽì"
@@ -1847,6 +1941,808 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"ê·žë ì§ë§ Appleì iOSìì ì€ííë ëžëŒì°ì 륌 WebkitìŽëŒë ê²ì ì¬ì©íšì ì구í©ëë€. ìŽì²ëŒ Onion ëžëŒì°ì ê° Tor "
+"ëžëŒì°ì ì ëìŒí ì¬ìí 볎ížë¥Œ ìêž° ê°ë¡ë§ìµëë€."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "íì¬ Windows Phoneìì Tor륌 ì€íí ì ìë ë°©ë²ì ììµëë€."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -1966,23 +2862,23 @@ msgstr "êž°ë¶íêž°"
msgid "Give today, and Mozilla will match your donation."
msgstr ""
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Tor ëžëŒì°ì ë€ìŽë¡ë"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "ì°ëЬì ì¬ëª
"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -1992,33 +2888,33 @@ msgstr ""
"ìì /ì€í ìì€ ìíížìšìŽë¥Œ ìŽì©í ìµëª
ì± ë° ê°ìž ì 볎 ë³Žíž êž°ì ì ê°ë° ë° ë°°í¬íê³ ìŽë¬í êž°ì ì ì í ìë ê°ì©ì±ê³Œ ì¬ì©ì ì§ìíë©°"
" 곌íì ë° ëì€ì ìŽíŽë¥Œ ìŽì§íšìŒë¡ìš ìžê¶ê³Œ ìì 륌 ìŠì§íë ê²ì
ëë€."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "íìíêž°"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "êž°ë¶íêž°"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ëŽì€ë í° êµ¬ë
íêž°"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Tor íë¡ì ížì ëí ìê° ì 볎륌 ë°ì볎ìžì:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "íì ë±ë¡"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+lt.po b/contents+lt.po
index 4aff7e0d44..adfa2a83aa 100644
--- a/contents+lt.po
+++ b/contents+lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Moo, 2020\n"
"Language-Team: Lithuanian (https://www.transifex.com/otf/teams/1519/lt/)\n"
@@ -78,8 +78,8 @@ msgstr "Atsisiuntimas"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor NarÅ¡yklÄs paleidimas pirmÄ
kartÄ
"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Tinklų tiltai"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Tapatybių tvarkymas"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,13 +145,20 @@ msgstr "Åœinomos problemos"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tapimas Tor vertÄju"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor NarÅ¡yklÄs pavertimas perkeliama"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -573,6 +580,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -591,13 +600,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Jeigu jūsų ryšys yra santykinai greitas, bet jums atrodo, kad ši juosta tam "
-"tikroje vietoje uÅŸstrigo, tuomet paÅŸiÅ«rÄkite [Nesklandumų "
-"Å¡alinimo](/lt/troubleshooting) puslapyje kaip galÄtumÄte iÅ¡sprÄsti Å¡iÄ
"
-"problemÄ
."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -612,57 +617,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Šį variantÄ
turÄtumÄte pasirinkti, jeigu ÅŸinote, kad jÅ«sų ryÅ¡ys yra "
-"cenzÅ«ruojamas arba naudoja įgaliotÄ
jį serverį. Tor NarÅ¡yklÄ praves jus per "
-"eilÄ konfigÅ«ravimo parinkÄių."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Pirmame lange bus klausiama ar jūsų ryšyje prieiga prie Tor yra blokuojama "
-"ar cenzÅ«ruojama, ar ne. Jeigu manote, kad tai nÄra jÅ«sų atvejis, pasirinkite"
-" \"Ne\". Jeigu ÅŸinote, kad jÅ«sų ryÅ¡ys yra cenzÅ«ruojamas arba bandÄte, bet "
-"jums nepavyko prisijungti prie Tor tinklo ir jokie sprendimai daugiau "
-"nebepadeda, tuomet pasirinkite \"Taip\". Tuomet būsite nukreipti į "
-"[ApÄjimo](/lt/circumvention) puslapį, skirtÄ
konfigÅ«ruoti keiÄiamÄ
jį "
-"perdavimÄ
."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Kitame lange, bus klausiama ar jÅ«sų ryÅ¡ys naudoja įgaliotÄ
jį serverį. "
-"Daugeliu atvejų tai nÄra bÅ«tina. DaÅŸniausiai, ÅŸinosite, ar jums reikia "
-"atsakyti \"Taip\", nes tie patys nustatymai bus naudojami kitose narÅ¡yklÄse "
-"jūsų sistemoje. Jei įmanoma, paprašykite tinklo administratoriaus pagalbos. "
-"Jeigu jÅ«sų ryÅ¡ys nenaudoja įgaliotojo serverio, spustelÄkite \"TÄsti\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -760,13 +786,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek perdavimai padaro taip, jog atrodo, kad narÅ¡ote po didÅŸiulÄ internetinÄ"
-" svetainÄ, o ne naudojatÄs Tor. meek-azure padaro taip, jog atrodo, kad "
-"naudojatÄs Microsoft internetine svetaine."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -805,36 +828,53 @@ msgstr "### KEIÄIAMŲJŲ PERDAVIMŲ NAUDOJIMAS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"NorÄdami naudoti keiÄiamÄ
jį perdavimÄ
, pirmojo Tor NarÅ¡yklÄs paleidimo metu "
-"spustelÄkite \"KonfigÅ«ruoti\". AtsivÄrusiame lange, iÅ¡ iÅ¡skleidÅŸiamojo meniu"
-" pasirinkite kurį keiÄiamÄ
jį perdavimÄ
norÄtumÄte naudoti."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Arba, jeigu Tor NarÅ¡yklÄ jau paleista, mÄsainio (â¡) meniu spustelÄkite ant "
-"\"Nuostatų\", o tuomet Å¡oninÄje juostoje ant \"Tor\". \"Tinklų tiltų\" "
-"sekcijoje paÅŸymÄkite langelį \"Naudoti tinklų tiltÄ
\", o išskleidşiamajame "
-"meniu \"Pasirinkite įtaisytÄ
jį tinklų tiltÄ
\", pasirinkite bet kurį norimÄ
"
-"naudoti keiÄiamÄ
jį perdavimÄ
."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"PasirinkÄ norimÄ
naudoti keiÄiamÄ
jį perdavimÄ
, spustelÄkite \"Prisijungti\","
-" kad įraÅ¡ytumÄte nustatymus."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -854,28 +894,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Jeigu pirmÄ
kartÄ
bandote apeiti blokuojamÄ
ryšį, išbandykite skirtingus "
-"perdavimus: obfs4, snowflake ir meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Jei iÅ¡bandÄte visus Å¡iuos variantus, bet vis tiek negalite prisijungti prie "
-"interneto, tuomet turÄsite rankiniu bÅ«du įvesti tinklų tiltų adresus."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"NorÄdami suÅŸinoti kas yra tinklų tiltai ir kaip juos gauti, skaitykite "
-"skyrių [Tinklų tiltai](/lt/bridges/)."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -974,42 +1008,46 @@ msgstr "### MOAT NAUDOJIMAS"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Jei Tor NarÅ¡yklÄ paleidÅŸiate pirmÄ
kartÄ
, spustelÄkite \"KonfigÅ«ruoti\", kad"
-" atvertumÄte Tor tinklo nustatymų langÄ
."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"PrieÅ¡ingu atveju, mÄsainio (â¡) meniu (pagrindiniame meniu) spustelÄkite ant "
-"\"Nuostatų\", o tuomet Å¡oninÄje juostoje ant \"Tor\"."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Tor tinklo nustatymų lange pasirinkite \"Mano šalyje Tor yra "
-"cenzūruojamas\"."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Tuomet pasirinkite \"PraÅ¡yti tinklų tilto iÅ¡ torproject.org\" ir spuselÄkite"
-" \"UÅŸklausti tinklų tiltÄ
âŠ\""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Surinkite saugos kodÄ
ir spustelÄkite \"Pateikti\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1035,25 +1073,23 @@ msgstr "GavÄ tinklų tiltų adresų, turÄsite juos įvesti į Tor paleidyklÄ.
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Jeigu paleidÅŸiate Tor narÅ¡yklÄ pirmÄ
kartÄ
, spustelÄkite \"KonfigÅ«ruoti\", "
-"kad atvertumÄte Tor tinklo nustatymų langÄ
. PrieÅ¡ingu atveju, mÄsainio (â¡) "
-"meniu (pagrindiniame meniu) spustelÄkite ant \"Nuostatų\", o tuomet Å¡oninÄje"
-" juostoje ant \"Tor\", kad pasiektumÄte Å¡iuos parametrus."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"\"Tinklų tiltų\" sekcijoje paÅŸymÄkite langelį \"Naudoti tinklų tiltÄ
\", "
-"tuomet, pasirinkite \"Pateikti man ÅŸinomÄ
tinklų tiltÄ
\" ir atskirose "
-"eilutÄse įveskite kiekvieno tinklų tilto adresÄ
."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1694,6 +1730,8 @@ msgstr "Kaip atnaujinti Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1882,6 +1920,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ÅœINOMOS PROBLEMOS"
@@ -2279,6 +2319,806 @@ msgstr ""
"* KonkreÄiai âBitTorrentâ [nÄra anoniminis per "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2423,13 +3263,13 @@ msgstr "PAAUKOKITE DABAR"
msgid "Give today, and Mozilla will match your donation."
msgstr "Paaukokite šiandien ir Mozilla paaukos tiek pat, kiek ir jūs."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Atsisiųskite Tor NarÅ¡yklÄ"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2437,11 +3277,11 @@ msgstr ""
"Atsisiųskite Tor narÅ¡yklÄ, kad galÄtumÄte patirti tikrÄ
privatų narÅ¡ymÄ
be "
"sekimo, stebÄjimo ar cenzÅ«ros."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Mūsų misija:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2452,34 +3292,34 @@ msgstr ""
"kodo anonimiÅ¡kumo ir privatumo technologijas, palaikant jų neribotÄ
"
"prieinamumÄ
ir naudojimÄ
bei skleidÅŸiant jų mokslinį ir visuotinį supratimÄ
."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Paaukoti"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Paaukokite dabar"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Prenumeruokite mūsų naujienlaiškį"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Kas mÄnesį gaukite naujienas apie atnaujinimus bei galimybes iÅ¡ Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Prenumeruoti"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+lv.po b/contents+lv.po
index c6a3a8c9c8..83cdb10193 100644
--- a/contents+lv.po
+++ b/contents+lv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Juris <juris.o(a)gmail.com>, 2019\n"
"Language-Team: Latvian (https://www.transifex.com/otf/teams/1519/lv/)\n"
@@ -78,8 +78,8 @@ msgstr "LejupielÄdÄ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "PÄrlÅ«ka Tor pirmÄ palaiÅ¡ana"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Tilti"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "IdentitÄÅ¡u pÄrvaldīšana"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,12 +145,19 @@ msgstr "ZinÄmÄs problÄmas"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -513,6 +520,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -528,7 +537,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -545,42 +554,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Ja Jums zinÄms, ka JÅ«su savienojums tiek cenzÄts vai lieto starpnieku, Jums "
-"jÄatlasa šī izvÄle. ParlÅ«ks Tor vadÄ«s JÅ«s caur konfigurÄÅ¡anas izvÄlÄm."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"NÄkamajÄ ekrÄnÄ tiks jautÄts, vai JÅ«su savienojums lieto starpnieku. VairumÄ"
-" gadÄ«jumu tas nav nepiecieÅ¡ams. Parasti JÅ«s zinÄsit vai Jums jÄatbild âJÄâ, "
-"jo tÄdus paÅ¡us iestatÄ«jumus lieto citi JÅ«su sistÄmas pÄrlÅ«ki. Ja iespÄjams, "
-"palūdziet padomu tīkla administratoram. Ja Jūsu savienojums nelieto "
-"starpnieku, noklikšķiniet âTurpinÄtâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -588,6 +607,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -675,9 +713,9 @@ msgstr "meek jeb rÄms"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -715,25 +753,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -752,21 +817,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -851,33 +916,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -903,17 +980,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1445,6 +1527,8 @@ msgstr "KÄ jauninÄt pÄrlÅ«ku Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1609,6 +1693,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1957,6 +2043,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2076,23 +2962,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr ""
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "LejuplÄdÄt PÄrlÅ«ku Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2100,33 +2986,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Ziedojiet"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr ""
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr ""
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+mk.po b/contents+mk.po
index 8c678a7690..9bc955c00b 100644
--- a/contents+mk.po
+++ b/contents+mk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Zarko Gjurov <zarkogjurov(a)gmail.com>, 2020\n"
"Language-Team: Macedonian (https://www.transifex.com/otf/teams/1519/mk/)\n"
@@ -78,8 +78,8 @@ msgstr "ÐÑезеЌаÑе"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "СÑаÑÑÑваÑе Ма Tor Browser за пÑв паÑ"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "ÐПÑÑПвО"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "УпÑавÑваÑе ÑП ОЎеМÑОÑеÑО"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,13 +145,20 @@ msgstr "ÐПзМаÑО пÑПблеЌО"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "СÑаМеÑе Tor пÑевеЎÑваÑ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "ÐапÑавеÑе гП Tor Browser пÑеМПÑеМ"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -555,6 +562,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -574,7 +583,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -591,51 +600,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"ÐкП зМаеÑе Ўека ваÑеÑП пПвÑзÑваÑе е ÑеМзÑÑОÑаМП ОлО кПÑОÑÑО пÑПкÑО, ÑÐŸÐ³Ð°Ñ "
-"ПЎбеÑеÑе Ñа Пваа ПпÑОÑа. Tor Browser Ñе ве вПЎО МОз ÑеÑОО ПЎ пПÑÑавÑваÑкО "
-"ПпÑОО."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Ð¡Ð»ÐµÐŽÐœÐžÐŸÑ ÐµÐºÑаМ Ñе ве пÑаÑа ЎалО ваÑеÑП пПвÑзÑваÑе кПÑОÑÑО пÑПкÑО. ÐП пПгПлеЌ"
-" бÑÐŸÑ ÑлÑÑаО Пва Ме е пПÑÑебМП. ÐОе МаÑÑеÑÑП Ñе зМаеÑе ЎалО ÑÑеба Ўа "
-"ПЎгПвПÑОÑе ÑП âÐаâ, заÑПа ÑÑП ОÑÑОÑе пПÑÑавкО бО бОле кПÑОÑÑеМО О за ÐŽÑÑгОÑе"
-" пÑелОÑÑÑваÑО Ма ваÑÐžÐŸÑ ÑОÑÑеЌ. ÐкП е вПзЌПжМП, за МаÑПкО пÑаÑаÑÑе гП ваÑОПÑ"
-" ÐŒÑежеМ аЎЌОМОÑÑÑаÑПÑ. ÐкП ваÑеÑП пПвÑзÑваÑе Ме кПÑОÑÑО пÑПкÑО, клОкМеÑе "
-"âÐÑПЎПлжОâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -723,9 +759,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -765,25 +801,52 @@ msgstr "### ÐÐÐ ÐСТÐÐÐ PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -802,21 +865,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -904,33 +967,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -959,17 +1034,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1571,6 +1651,8 @@ msgstr "ÐакП Ўа гП ажÑÑОÑаÑе Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1747,6 +1829,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2098,6 +2182,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2217,23 +3101,23 @@ msgstr "ÐÐÐÐÐ ÐÐТРСÐÐÐ"
msgid "Give today, and Mozilla will match your donation."
msgstr "ÐПМОÑÐ°Ñ ÐŽÐµÐœÐµÑ Ðž Mozilla Ñе Ñа пПвÑзе ÐаÑаÑа ЎПМаÑОÑа."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "ÐÑевзеЌО гП Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "ÐаÑаÑа ЌОÑОÑа:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2241,33 +3125,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ÐПМОÑаÑ"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ÐПМОÑÐ°Ñ Ñега"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "РегОÑÑÑОÑÐ°Ñ Ñе"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ml.po b/contents+ml.po
index 9d7035dd90..8d43f30698 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: ameer pb <ameerpbekm(a)gmail.com>, 2020\n"
"Language-Team: Malayalam (https://www.transifex.com/otf/teams/1519/ml/)\n"
@@ -79,8 +79,8 @@ msgstr "àŽ¡àµàµºà޲àµàŽŸàŽ¡àµàŽàµàޝàµàޝàµàŽšàµàŽšàµ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽàŽŠàµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ àŽªàµàŽ°àŽµàµŒàŽ€àµàŽ€àŽ¿àŽªàµàŽªàŽ¿àŽàµàŽàµàŽšàµàŽšàµ"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -99,8 +99,8 @@ msgstr "àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµàŽàµŸ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "àŽàŽ¡àŽšàµàŽ±àŽ¿àŽ±àµàŽ±àŽ¿àŽàµŸ àŽšàŽ¿àŽ¯àŽšàµàŽ€àµàŽ°àŽ¿àŽàµàŽàµàŽšàµàŽšàµ"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -146,13 +146,20 @@ msgstr "àŽ
àŽ±àŽ¿àŽ¯àŽªàµàŽªàµàŽàµàŽšàµàŽš àŽªàµàŽ°àŽ¶àµàŽšàŽàµàŽàµŸ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "àŽàŽ°àµ àŽàµàµŒ àŽµàŽ¿àŽµàµŒàŽ€àµàŽ€àŽàŽšàŽŸàŽàµàŽšàµàŽšàµ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽªàµàµŒàŽàµàŽàŽ¬àŽ¿àµŸ àŽàŽàµàŽàµàŽšàµàŽšàµ"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -581,6 +588,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -600,12 +609,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽ€àŽŸàŽ°àŽ€àŽ®àµàޝàµàŽš àŽµàµàŽàŽ€àŽ¯àµà޳àµà޳ àŽàŽ£àŽàµàŽ·àŽšàŽ¿àŽ²àŽŸàŽ£àµàŽàµàŽàŽ¿àµœ, àŽàŽšàµàŽšàŽŸàµœ àŽ àŽ¬àŽŸàµŒ àŽàŽ°àµ àŽšàŽ¿àŽ¶àµàŽàŽ¿àŽ€ "
-"àŽàŽàµàŽàŽ€àµàŽ€àŽ¿àµœ àŽàµàŽàµàŽàµàŽàŽ¿àŽ¯àŽ€àŽŸàŽ¯àŽ¿ àŽ€àµàŽšàµàŽšàµàŽšàµàŽšàµà޵àµàŽàµàŽàŽ¿àµœ, àŽªàµàŽ°àŽ¶àµàŽšàŽ àŽªàŽ°àŽ¿àŽ¹àŽ°àŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµà޳àµà޳ "
-"àŽžàŽ¹àŽŸàŽ¯àŽ€àµàŽ€àŽ¿àŽšàŽŸàŽ¯àŽ¿ [àŽàµàŽ°àŽ¬àŽ¿àµŸàŽ·àµàŽàµàŽàŽ¿àŽàŽàµ](/ml/troubleshooting) àŽªàµàŽàµ àŽàŽŸàŽ£àµàŽ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -620,60 +626,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàŽ£àŽàµàŽ·àµ» àŽžàµàµ»àŽžàµŒ àŽàµàޝàµàŽ€àŽ€àŽŸàŽ£àµàŽšàµàŽšàµ àŽªàµàްàµàŽàµàŽžàŽ¿ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàµà޵àµàŽšàµàŽšàµ "
-"àŽšàŽ¿àŽàµàŽàµŸàŽàµàŽàŽ±àŽ¿àŽ¯àŽŸàŽ®àµàŽàµàŽàŽ¿àµœ, àŽšàŽ¿àŽàµàŽàµŸ àŽ àŽàŽªàµàŽ·àµ» àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàŽ£àŽ. àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽšàŽ¿àŽ°àŽµàŽ§àŽ¿ "
-"àŽàµàµºàŽ«àŽ¿àŽàޱàµàŽ·àµ» àŽàŽªàµàŽ·àŽšàµàŽàŽ³àŽ¿àŽ²àµàŽàµ àŽšàŽ¿àŽàµàŽàŽ³àµ àŽàµàŽ£àµàŽàµàŽªàµàŽàµàŽ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàŽ£àŽàµàŽ·àŽšàŽ¿àµœ àŽàµàµŒ àŽšàµàޱàµàޱàµàŽµàµŒàŽàµàŽàŽ¿àŽ²àµàŽàµàŽàµà޳àµà޳ àŽàŽàµàŽžàŽžàµàŽžàµ àŽ€àŽàŽàµàŽàµ àŽžàµàµ»àŽžàµŒ "
-"àŽàµàޝàµàŽ€àŽ¿àŽàµàŽàµàŽ£àµàŽàµ àŽàŽšàµàŽšàµ àŽàŽŠàµàޝ àŽžàµàŽàµàްàµàµ» àŽàµàŽŠàŽ¿àŽàµàŽàµàŽšàµàŽšàµ. àŽàŽàµàŽàŽšàµàŽ¯àŽŸàŽ£àµàŽšàµàŽšàµ àŽšàŽ¿àŽàµàŽàµŸ "
-"àŽµàŽ¿àŽ¶àµàŽµàŽžàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ¿àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, âàŽà޲àµà޲â àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ. àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàŽ£àŽàµàŽ·àµ» àŽžàµàµ»àŽžàµŒ "
-"àŽàµàޝàµàŽ€àŽ¿àŽàµàŽàµàŽ£àµàŽàµàŽšàµàŽšàµ àŽšàŽ¿àŽàµàŽàµŸàŽàµàŽàŽ±àŽ¿àŽ¯àŽŸàŽ®àµàŽàµàŽàŽ¿àµœ, àŽ
àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ àŽàµàµŒ àŽšàµàޱàµàޱàµàŽµàµŒàŽàµàŽàŽ¿àŽ²àµàŽàµàŽàµ "
-"àŽàŽ£àŽàµàޱàµàޱàµàŽàµàޝàµàŽ¯àŽŸàµ» àŽšàŽ¿àŽàµàŽàµŸ àŽ¶àµàŽ°àŽ®àŽ¿àŽàµàŽàµàŽàޝàµàŽ àŽªàŽ°àŽŸàŽàŽ¯àŽªàµàŽªàµàŽàµàŽàޝàµàŽ àŽàµàޝàµàŽ€àµ, àŽ®àŽ±àµàŽ±àµ "
-"àŽªàŽ°àŽ¿àŽ¹àŽŸàŽ°àŽàµàŽà޳àµàŽšàµàŽšàµàŽ àŽªàµàŽ°àŽµàµŒàŽ€àµàŽ€àŽ¿àŽàµàŽàŽ¿àŽàµàŽàŽ¿àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, âàŽ
àŽ€àµâ àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ. àŽªàµà޲àŽàµ "
-"àŽàµàޝàµàŽ¯àŽŸàŽµàµàŽšàµàŽš àŽàŽ°àµ àŽàŽ€àŽŸàŽàŽ€àŽ àŽàµàŽ°àŽ®àµàŽàŽ°àŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ àŽšàŽ¿àŽàµàŽàŽ³àµ "
-"[àŽžàµŒàŽàµàŽàŽà޵àµàµ»àŽ·àµ»](/ml/circumvention) àŽžàµàŽàµàްàµàŽšàŽ¿àŽ²àµàŽàµàŽàµ àŽàµàŽ£àµàŽàµàŽªàµàŽàµàŽ."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàŽ£àŽàµàŽ·àµ» àŽàŽ°àµ àŽªàµàްàµàŽàµàŽžàŽ¿ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàµàŽ£àµàŽàµ àŽàŽšàµàŽšàµ àŽ
àŽàµàŽ€àµàŽ€ àŽžàµàŽàµàްàµàµ» "
-"àŽàµàŽŠàŽ¿àŽàµàŽàµàŽšàµàŽšàµ. àŽ®àŽ¿àŽàµàŽ àŽàµàŽžàµàŽàŽ³àŽ¿àŽ²àµàŽ, àŽàŽ€àµ àŽàŽµàŽ¶àµàŽ¯àŽ®àŽ¿àŽ²àµà޲. àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽžàŽ¿àŽžàµàޱàµàŽ±àŽ€àµàŽ€àŽ¿àŽ²àµ "
-"àŽ®àŽ±àµàŽ±àµ àŽ¬àµàްàµàŽžàµŒàŽàµŸàŽàµàŽàµàŽ àŽžàŽ®àŽŸàŽš àŽàµàŽ°àŽ®àµàŽàŽ°àŽ£àŽàµàŽàµŸ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàŽŸàµœ âàŽ
àŽ€àµâ àŽàŽšàµàŽšàµ àŽàŽ€àµàŽ€àŽ°àŽ "
-"àŽšàµœàŽàµàŽ£àµàŽàŽ€àµàŽ£àµàŽàµ àŽàŽšàµàŽšàµ àŽšàŽ¿àŽàµàŽàµŸàŽàµàŽàµ àŽžàŽŸàŽ§àŽŸàŽ°àŽ£àŽ¯àŽŸàŽ¯àŽ¿ àŽ
àŽ±àŽ¿àŽ¯àŽŸàŽ. àŽžàŽŸàŽ§àµàŽ¯àŽ®àµàŽàµàŽàŽ¿àµœ, "
-"àŽ®àŽŸàµŒàŽàŽšàŽ¿àµŒàŽŠàµàŽŠàµàŽ¶àŽ€àµàŽ€àŽ¿àŽšàŽŸàŽ¯àŽ¿ àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽšàµàޱàµàޱàµàŽµàµŒàŽàµàŽàµ àŽ
àŽ¡àµàŽ®àŽ¿àŽšàŽ¿àŽžàµàŽàµàްàµàޱàµàŽ±àŽ±àµàŽàµ "
-"àŽàŽµàŽ¶àµàŽ¯àŽªàµàŽªàµàŽàµàŽ. àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàŽ£àŽàµàŽ·àµ» àŽàŽ°àµ àŽªàµàްàµàŽàµàŽžàŽ¿ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ¿àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, "
-"âàŽ€àµàŽàްàµàŽâ àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -770,13 +794,10 @@ msgstr "àŽžàµàŽ®àµàŽ¯àŽ€"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"àŽ®àµàŽàµ àŽàµàŽ°àŽŸàµ»àŽžàµàŽªàµàµŒàŽàµàŽžàµ àŽàµàµŒ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµàŽªàŽàŽ°àŽ àŽšàŽ¿àŽàµàŽàµŸ àŽàŽ°àµ àŽªàµàŽ°àŽ§àŽŸàŽš àŽµàµàެàµâàŽžàµàޱàµàŽ±àµ "
-"àŽ¬àµàްàµàŽžàµàŽàµàޝàµàޝàµàŽšàµàŽšàŽ€àŽŸàŽ¯àŽ¿ àŽ€àµàŽšàµàŽšàŽ¿àŽàµàŽàµàŽšàµàŽšàµ. àŽšàŽ¿àŽàµàŽàµŸ àŽàŽ°àµ àŽ®àµàŽàµàްàµàŽžàµàŽ«àµàޱàµàŽ±àµ àŽµàµàŽ¬àµ àŽžàµàޱàµàŽ±àµ "
-"àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àµàŽªàµàŽ²àµ àŽžàµàŽ®àµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ àŽ®àµàŽàµ àŽ
àŽžàµàµŒ àŽàŽŸàŽ£àŽ¿àŽàµàŽàµàŽšàµàŽšàµ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -816,39 +837,53 @@ msgstr "##### àŽªàµà޲àŽàŽ¬àŽ¿àµŸ àŽàµàŽ°àŽŸàµ»àŽžàµàŽªàµàµŒàŽàµàŽàµ
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"àŽªàµà޲àŽàµ àŽàµàޝàµàŽ¯àŽŸàŽµàµàŽšàµàŽš àŽàŽ°àµ àŽàŽ€àŽŸàŽàŽ€àŽ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ, àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽàŽŠàµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ "
-"àŽàްàŽàŽàŽ¿àŽàµàŽàµàŽ®àµàŽªàµàµŸ 'àŽàµàŽ°àŽ®àµàŽàŽ°àŽ¿àŽàµàŽàµàŽ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ. àŽŠàµà޶àµàŽ¯àŽ®àŽŸàŽàµàŽšàµàŽš àŽµàŽ¿àµ»àŽ¡àµàŽ¯àŽ¿àµœ, "
-"àŽ¡àµàްàµàŽªàµàŽªàµ-àŽ¡àµàµº àŽ®àµàŽšàµàŽµàŽ¿àµœ àŽšàŽ¿àŽšàµàŽšàµ, àŽšàŽ¿àŽàµàŽàµŸ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàŽŸàµ» àŽàŽàµàŽ°àŽ¹àŽ¿àŽàµàŽàµàŽšàµàŽš àŽªàµà޲àŽàŽ¬àŽ¿àµŸ "
-"àŽàµàŽ°àŽŸàµ»àŽžàµàŽªàµàµŒàŽàµàŽàµ àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"àŽ
àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, àŽšàŽ¿àŽàµàŽàµŸàŽàµàŽàµ àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽªàµàŽ°àŽµàµŒàŽ€àµàŽ€àŽ¿àŽàµàŽàµàŽšàµàŽšàµàŽ£àµàŽàµàŽàµàŽàŽ¿àµœ, àŽ¹àŽŸàŽàŽ¬àµŒàŽàµŒ "
-"àŽ®àµàŽšàµàŽµàŽ¿àŽ²àµ 'àŽ®àµàµ»âàŽàŽ£àŽšàŽàµŸ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ, àŽ€àµàŽàµŒàŽšàµàŽšàµ àŽžàµàŽ¡àµâàŽ¬àŽŸàŽ±àŽ¿àŽ²àµ 'àŽàµàµŒ' "
-"àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ. 'àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàŽžàµ' àŽµàŽ¿àŽàŽŸàŽàŽ€àµàŽ€àŽ¿àµœ, 'àŽàŽ°àµ àŽªàŽŸàŽ²àŽ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽ' àŽàŽšàµàŽš àŽ¬àµàŽàµàŽžàµ "
-"àŽàµàŽàµàŽàµàŽàµàޝàµàޝàµàŽ, àŽ¡àµàްàµàŽªàµàŽªàµ-àŽ¡àµàµº àŽ®àµàŽšàµàŽµàŽ¿àµœ àŽšàŽ¿àŽšàµàŽšàµ 'àŽàŽ°àµ àŽ¬àŽ¿àµœàŽ±àµàޱàµ-àŽàµ» àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµ "
-"àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ', àŽšàŽ¿àŽàµàŽàµŸ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàŽŸàµ» àŽàŽàµàŽ°àŽ¹àŽ¿àŽàµàŽàµàŽšàµàŽš àŽªàµà޲àŽàŽ¬àŽ¿àµŸ àŽàŽ€àŽŸàŽàŽ€àŽ "
-"àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàŽŸàµ» àŽàŽàµàŽ°àŽ¹àŽ¿àŽàµàŽàµàŽšàµàŽš àŽªàµà޲àŽàŽ¬àŽ¿àµŸ àŽàµàŽ°àŽŸàµ»àŽžàµàŽªàµàµŒàŽàµàŽàµ àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽ€àµàŽ€àµ "
-"àŽàŽŽàŽ¿àŽàµàŽàŽŸàµœ, àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽàµàŽ°àŽ®àµàŽàŽ°àŽ£àŽàµàŽàµŸ àŽžàŽàްàŽàµàŽ·àŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ 'àŽ¬àŽšàµàŽ§àŽ¿àŽªàµàŽªàŽ¿àŽàµàŽàµàŽ' "
-"àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -869,28 +904,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽàŽŠàµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ àŽàŽ°àµ àŽ€àŽàŽàµàŽ àŽàŽ£àŽàµàŽ·àµ» àŽàŽŽàŽ¿àŽµàŽŸàŽàµàŽàŽŸàµ» àŽ¶àµàŽ°àŽ®àŽ¿àŽàµàŽàµàŽàŽ¯àŽŸàŽ£àµàŽàµàŽàŽ¿àµœ, àŽšàŽ¿àŽàµàŽàµŸ "
-"àŽµàµàŽ¯àŽ€àµàŽ¯àŽžàµàŽ€ àŽàµàŽ°àŽŸàµ»àŽžàµàŽªàµàµŒàŽàµàŽàµàŽàµŸ àŽªàŽ°àµàŽàµàŽ·àŽ¿àŽàµàŽàŽ£àŽ: obfs4, snowflake, meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽ àŽàŽªàµàŽ·àŽšàµàŽà޳àµà޲àµàŽ²àŽŸàŽ àŽªàŽ°àµàŽàµàŽ·àŽ¿àŽàµàŽàµàŽšàµàŽàµàŽàŽ¿àŽ¯àŽŸàµœ, àŽ
àŽµàŽ¯àµàŽšàµàŽšàµàŽ àŽšàŽ¿àŽàµàŽàŽ³àµ àŽàµºâàŽ²àµàŽšàŽ¿àµœ "
-"àŽàŽ€àµàŽ€àŽ¿àŽàµàŽàµàŽšàµàŽšàŽ¿àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, àŽšàŽ¿àŽàµàŽàµŸ àŽžàµàŽµàŽ®àµàŽ§àŽ¯àŽŸ àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµ àŽµàŽ¿àŽ²àŽŸàŽžàŽàµàŽàµŸ àŽšàµœàŽàµàŽ£àµàŽàŽ€àµàŽ£àµàŽàµ. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµàŽàµŸ àŽàŽšàµàŽ€àŽŸàŽ£àµàŽšàµàŽšàµàŽ àŽ
àŽµ àŽàŽàµàŽàŽšàµ àŽšàµàŽàŽŸàŽ®àµàŽšàµàŽšàµàŽ àŽ®àŽšàŽžàŽ¿àŽ²àŽŸàŽàµàŽàŽŸàµ» "
-"[àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµàŽàµŸ](/ml/bridges/) àŽµàŽ¿àŽàŽŸàŽàŽ àŽµàŽŸàŽ¯àŽ¿àŽàµàŽàµàŽ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -991,42 +1020,46 @@ msgstr "### MOAT àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽšàµ"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽàŽŠàµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽàްàŽàŽàŽ¿àŽàµàŽàµàŽàŽ¯àŽŸàŽ£àµàŽàµàŽàŽ¿àµœ, àŽàµàµŒ àŽšàµàޱàµàޱàµâàŽµàµŒàŽàµàŽàµ àŽàµàŽ°àŽ®àµàŽàŽ°àŽ£ "
-"àŽµàŽ¿àµ»àŽ¡àµ àŽ€àµàޱàŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ 'àŽàµàµºàŽ«àŽ¿àŽàµŒ àŽàµàޝàµàޝàµàŽ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"àŽ
àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, àŽ¹àŽŸàŽàŽ¬àµŒàŽàµŒ àŽ®àµàŽšàµàŽµàŽ¿àŽ²àµ (àŽªàµàŽ°àŽ§àŽŸàŽš àŽ®àµàŽšàµ) 'àŽ®àµàµ»âàŽàŽ£àŽšàŽàµŸ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ, "
-"àŽ€àµàŽàµŒàŽšàµàŽšàµ àŽžàµàŽ¡àµâàŽ¬àŽŸàŽ±àŽ¿àŽ²àµ 'àŽàµàµŒ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"àŽàµàµŒ àŽšàµàޱàµàޱàµâàŽµàµŒàŽàµàŽàµ àŽàµàŽ°àŽ®àµàŽàŽ°àŽ£ àŽµàŽ¿àµ»àŽ¡àµàŽ¯àŽ¿àµœ, 'àŽàµàµŒ àŽàŽšàµàŽ±àµ àŽ°àŽŸàŽàµàŽ¯àŽ€àµàŽ€àµ àŽžàµàµ»àŽžàµŒ àŽàµàޝàµâàŽ€àµ' "
-"àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽàµàŽàµàŽ. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"àŽ€àµàŽàµŒàŽšàµàŽšàµ, 'torproject.org- ൜ àŽšàŽ¿àŽšàµàŽšàµ àŽàŽ°àµ àŽªàŽŸàŽ²àŽ àŽ
àŽàµàŽ¯àµŒàŽ€àµàŽ¥àŽ¿àŽàµàŽàµàŽ' àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽ€àµàŽ€àµ "
-"'àŽàŽ°àµ àŽªàŽŸàŽ²àŽ àŽ
àŽàµàŽ¯àµŒàŽ€àµàŽ¥àŽ¿àŽàµàŽàµàŽ ...' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "CAPTCHA àŽªàµàµŒàŽ€àµàŽ€àŽ¿àŽ¯àŽŸàŽàµàŽàŽ¿ 'àŽžàŽ®àµŒàŽªàµàŽªàŽ¿àŽàµàŽàµàŽ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1054,25 +1087,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"àŽšàŽ¿àŽàµàŽàµŸ àŽàŽŠàµàŽ¯àŽ®àŽŸàŽ¯àŽ¿ àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽàްàŽàŽàŽ¿àŽàµàŽàµàŽàŽ¯àŽŸàŽ£àµàŽàµàŽàŽ¿àµœ, àŽàµàµŒ àŽšàµàޱàµàޱàµâàŽµàµŒàŽàµàŽàµ àŽàµàŽ°àŽ®àµàŽàŽ°àŽ£ "
-"àŽµàŽ¿àµ»àŽ¡àµ àŽ€àµàޱàŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ 'àŽàµàµºàŽ«àŽ¿àŽàµŒ àŽàµàޝàµàޝàµàŽ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ. àŽ
àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ, àŽ "
-"àŽàŽªàµàŽ·àŽšàµàŽàµŸ àŽàŽàµàŽžàŽžàµ àŽàµàޝàµàޝàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ àŽ¹àŽŸàŽàŽ¬àµŒàŽàµŒ àŽ®àµàŽšàµàŽµàŽ¿àŽ²àµ (àŽªàµàŽ°àŽ§àŽŸàŽš àŽ®àµàŽšàµ) 'àŽ®àµàµ»âàŽàŽ£àŽšàŽàµŸ' "
-"àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ, àŽ€àµàŽàµŒàŽšàµàŽšàµ àŽžàµàŽ¡àµâàŽ¬àŽŸàŽ±àŽ¿àŽ²àµ 'àŽàµàµŒ' àŽàµàŽ²àŽ¿àŽàµàŽàµàŽàµàޝàµàޝàµàŽ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"'àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàŽžàµ' àŽµàŽ¿àŽàŽŸàŽàŽ€àµàŽ€àŽ¿àµœ, 'àŽàŽ°àµ àŽªàŽŸàŽ²àŽ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽ' àŽàŽšàµàŽš àŽ¬àµàŽàµàŽžàµ àŽàµàŽàµàŽàµàŽàµàޝàµàޝàµàŽ, "
-"àŽ€àµàŽàµŒàŽšàµàŽšàµ, 'àŽàŽšàŽ¿àŽàµàŽàŽ±àŽ¿àŽ¯àŽŸàŽµàµàŽšàµàŽš àŽàŽ°àµ àŽªàŽŸàŽ²àŽ àŽšàµœàŽàµàŽ' àŽ€àŽ¿àŽ°àŽàµàŽàµàŽàµàŽ€àµàŽ€àµ àŽàŽ°àµ àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµ "
-"àŽµàŽ¿àŽ²àŽŸàŽžàŽµàµàŽ àŽªàµàŽ°àŽ€àµàޝàµàŽ àŽµàŽ°àŽ¿àŽ¯àŽ¿àµœ àŽšàµœàŽàµàŽ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1717,6 +1748,8 @@ msgstr "àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽàŽàµàŽàŽšàµ àŽ
àŽªàµàŽ¡àµàޱàµàޱ
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1910,6 +1943,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "##### àŽ
àŽ±àŽ¿àŽ¯àŽªàµàŽªàµàŽàµàŽšàµàŽš àŽªàµàŽ°àŽ¶àµàŽšàŽàµàŽàµŸ"
@@ -2300,6 +2335,822 @@ msgstr ""
"* àŽ¬àŽ¿àŽ±àµàŽ±àµ àŽàµàŽ±àŽšàµàŽ±àµ [àŽàµàŽ±àŽ¿àŽšàµàŽàµàŽàŽŸàµŸ àŽ
àŽàµàŽàŽŸàŽ€àŽ®àŽ²àµà޲](https://blog.torproject.org"
"/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr "àŽªàµàŽ€àµ àŽàµàµŒ àŽ¡àŽ¯àŽ±àŽàµàŽàŽ±àŽ¿àŽ¯àŽ¿àµœ àŽ²àŽ¿àŽžàµàޱàµàޱàµàŽàµàޝàµàŽ¯àŽŸàŽ€àµàŽ€ àŽàµàµŒ àŽ±àŽ¿àŽ²àµàŽàŽ³àŽŸàŽ£àµ àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµ àŽ±àŽ¿àŽ²àµàŽàµŸ."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"àŽ
àŽàŽ¿àŽàµàŽàŽ®àµŒàŽ€àµàŽ€àµàŽšàµàŽš àŽàŽ°àŽ£àŽ€àµàŽ€àŽ¿àµ» àŽàµàŽŽàŽ¿àŽ²àµà޳àµà޳ àŽàµàµŒ àŽàŽªàŽ¯àµàŽàµàŽ€àŽŸàŽàµàŽàµŸàŽàµàŽàµ àŽ¬àµàŽ°àŽ¿àŽ¡àµàŽàµàŽàµŸ "
+"àŽàŽªàŽ¯àµàŽàŽªàµàŽ°àŽŠàŽ®àŽŸàŽ£àµ, àŽàµàŽàŽŸàŽ€àµ àŽ
àŽ§àŽ¿àŽ àŽžàµàްàŽàµàŽ· àŽàŽµàŽ¶àµàŽ¯àŽ®àµà޳àµà޳ àŽà޳àµàŽàµŸàŽàµàŽàµ àŽ
àŽµàµŒ àŽàŽ°àµ àŽªàµàŽ€àµ àŽàµàµŒ àŽ±àŽ¿àŽ²àµ"
+" àŽàŽªàŽ¿ àŽµàŽ¿àŽ²àŽŸàŽžàŽµàµàŽ®àŽŸàŽ¯àŽ¿ àŽ¬àŽšàµàŽ§àŽªàµàŽªàµàŽàµàŽšàµàŽšàŽ€àŽŸàŽ¯àŽ¿ àŽàްàµàŽàµàŽàŽ¿àŽ²àµàŽ àŽ€àŽ¿àŽ°àŽ¿àŽàµàŽàŽ±àŽ¿àŽ¯àµàŽ®àµàŽšàµàŽšàµ "
+"àŽàŽ¯àŽªàµàŽªàµàŽàµàŽšàµàŽšàµ."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"àŽàŽªàµàŽªàµº àŽžàµàŽŽàµâàŽžàµ, àŽàµàµŒ àŽ±àµàŽàµàŽàŽ¿àŽàŽàµ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàµàŽšàµàŽš, àŽàµàµŒ àŽªàµàްàµàŽàŽàµàޱàµàޱàµàŽ®àŽŸàŽ¯àŽ¿ àŽàµàµŒàŽšàµàŽšàµ "
+"àŽªàµàŽ°àŽµàµŒàŽ€àµàŽ€àŽ¿àŽàµàŽàµàŽšàµàŽš àŽàŽ°àŽŸàµŸ àŽµàŽ¿àŽàŽžàŽ¿àŽªàµàŽªàŽ¿àŽàµàŽàµàŽàµàŽ€àµàŽ€ àŽàµàŽšàŽ¿àŽ¯àµŒ àŽ¬àµàްàµàŽžàµŒ àŽàŽšàµàŽš iOS àŽ
àŽªàµàŽ²àŽ¿àŽàµàŽàµàŽ·àµ» "
+"àŽàŽàµàŽàµŸ àŽ¶àµàŽªàŽŸàµŒàŽ¶ àŽàµàޝàµàޝàµàŽšàµàŽšàµ."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"àŽàŽšàµàŽšàŽ¿àŽ°àµàŽšàµàŽšàŽŸàŽ²àµàŽ, àŽµàµàެàµâàŽàŽ¿àŽ±àµàŽ±àµ àŽàŽšàµàŽšàµ àŽµàŽ¿àŽ³àŽ¿àŽàµàŽàµàŽšàµàŽš àŽàŽšàµàŽšàµ àŽàŽªàŽ¯àµàŽàŽ¿àŽàµàŽàŽŸàµ» àŽàŽªàµàŽªàŽ¿àŽ³àŽ¿àŽšàµ "
+"iOS- àŽ²àµ àŽ¬àµàްàµàŽžàŽ±àµàŽàµŸ àŽàŽµàŽ¶àµàŽ¯àŽ®àŽŸàŽ£àµ, àŽàŽ€àµ àŽàµàµŒ àŽ¬àµàްàµàŽžàŽ±àŽ¿àŽšàµ àŽžàŽ®àŽŸàŽšàŽ®àŽŸàŽ¯ àŽžàµà޵àŽàŽŸàŽ°àµàŽ¯àŽ€ "
+"àŽªàŽ°àŽ¿àŽ°àŽàµàŽ·àŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àµœ àŽšàŽ¿àŽšàµàŽšàµ àŽàŽ£àŽ¿àŽ¯àµ» àŽ¬àµàްàµàŽžàŽ±àŽ¿àŽšàµ àŽ€àŽàޝàµàŽšàµàŽšàµ."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[àŽàŽ£àŽ¿àŽ¯àµ» àŽ¬àµàްàµàŽžàŽ±àŽ¿àŽšàµàŽàµàŽàµàŽ±àŽ¿àŽàµàŽàµ àŽàµàŽàµàŽ€àŽ²àŽ±àŽ¿àŽ¯àµàŽ](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"[àŽàŽªàµàŽªàµ àŽžàµàޱàµàޱàµàŽ±àŽ¿àµœ](https://itunes.apple.com/us/app/onion-browser/…"
+" àŽàŽ£àŽ¿àŽ¯àµ» àŽ¬àµàްàµàŽžàµŒ àŽ¡àµàµºà޲àµàŽ¡àµàŽàµàޝàµàޝàµàŽ."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"àŽµàŽ¿àµ»àŽ¡àµàŽžàµ àŽ«àµàŽ£àŽ¿àµœ àŽàµàµŒ àŽªàµàŽ°àŽµàµŒàŽ€àµàŽ€àŽ¿àŽªàµàŽªàŽ¿àŽàµàŽàµàŽšàµàŽšàŽ€àŽ¿àŽšàµ àŽšàŽ¿àŽ²àŽµàŽ¿àµœ àŽªàŽ¿àŽšàµàŽ€àµàŽ£àŽ¯àµâàŽàµàŽàµàŽšàµàŽš "
+"àŽ°àµàŽ€àŽ¿àŽà޳àµàŽšàµàŽšàµàŽ®àŽ¿àŽ²àµà޲."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2448,13 +3299,13 @@ msgstr "àŽàŽªàµàŽªàµàŽŸàµŸ àŽŠàŽŸàŽšàŽ àŽàµàޝàµàޝàµ"
msgid "Give today, and Mozilla will match your donation."
msgstr "àŽàŽšàµàŽšàµ àŽšàµœàŽàµàŽ, àŽàµàŽàŽŸàŽ€àµ àŽ®àµàŽžàŽ¿àŽ²àµà޲ àŽšàŽ¿àŽàµàŽà޳àµàŽàµ àŽžàŽàŽàŽŸàŽµàŽšàŽ¯àµ àŽàµàµŒàŽàµàŽàµàŽšàµàŽšàŽ€àŽŸàŽ£àµ ."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽ¡àµàµºà޲àµàŽ¡àµàŽàµàޝàµàޝàµàŽ"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2462,11 +3313,11 @@ msgstr ""
"àŽàµàŽ°àŽŸàŽàµàŽàŽ¿àŽàŽàµ, àŽšàŽ¿àŽ°àµàŽàµàŽ·àŽ£àŽ àŽ
àŽ²àµà޲àµàŽàµàŽàŽ¿àµœ àŽžàµàµ»àŽžàµŒàŽ·àŽ¿àŽªàµàŽªàµ àŽà޲àµàŽ²àŽŸàŽ€àµ àŽ¯àŽ¥àŽŸàµŒàŽ€àµàŽ¥ àŽžàµà޵àŽàŽŸàŽ°àµàޝ "
"àŽ¬àµàްàµàŽžàŽ¿àŽàŽàµ àŽ
àŽšàµàŽàŽµàŽ¿àŽàµàŽàŽŸàµ» àŽàµàµŒ àŽ¬àµàްàµàŽžàµŒ àŽ¡àµºàŽ²àµàŽ¡àµ àŽàµàޝàµàޝàµàŽ."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "àŽàŽàµàŽà޳àµàŽàµ àŽŠàµàŽ€àµàޝàŽ:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2479,33 +3330,33 @@ msgstr ""
"àŽàŽªàŽ¯àµàŽàŽ€àµàŽ€àµàޝàµàŽ àŽªàŽ¿àŽšàµàŽ€àµàŽ£àŽ¯àµàŽàµàŽàµàŽ, àŽ
àŽµàŽ°àµàŽàµ àŽ¶àŽŸàŽžàµàŽ€àµàްàµàŽ¯àŽµàµàŽ àŽàŽšàŽàµàŽ¯àŽµàµàŽ®àŽŸàŽ¯ àŽ§àŽŸàŽ°àŽ£àŽàµŸ "
"àŽµàµŒàŽŠàµàŽ§àŽ¿àŽªàµàŽªàŽ¿àŽàµàŽàµàŽ."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "àŽžàŽàŽàŽŸàŽµàŽš àŽàµàޝàµàޝàµàŽ "
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "àŽàŽªàµàŽªàµàµŸ àŽ€àŽšàµàŽšàµ àŽ§àŽš àŽžàŽ¹àŽŸàŽ¯àŽ àŽàµàޝàµàŽ¯àµ "
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "àŽàŽàµàŽà޳àµàŽàµ àŽµàŽŸàµŒàŽ€àµàŽ€àŽŸàŽàµàŽàµàŽ±àŽ¿àŽªàµàŽªàµ àŽžàŽ¬àµàŽžàµàŽàµàްàµàެàµàŽàµàޝàµàޝàµàŽ"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "àŽàµàµŒ àŽªàµàްàµàŽàŽàµàޱàµàŽ±àŽ¿àµœ àŽšàŽ¿àŽšàµàŽšàµ àŽªàµàŽ°àŽ€àŽ¿àŽ®àŽŸàŽž àŽ
àŽªàµàŽ¡àµàޱàµàޱàµàŽà޳àµàŽ àŽ
àŽµàŽžàŽ°àŽàµàŽà޳àµàŽ àŽšàµàŽàµàŽ:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "àŽžàµàµ» àŽ
àŽªàµàŽªàµ àŽàµàޝàµàޝàµàŽ"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ms.po b/contents+ms.po
index fc75b62353..f0442a3a0b 100644
--- a/contents+ms.po
+++ b/contents+ms.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: abuyop <abuyop(a)gmail.com>, 2020\n"
"Language-Team: Malay (Malaysia) (https://www.transifex.com/otf/teams/1519/ms_MY/)\n"
@@ -78,8 +78,8 @@ msgstr "Memuat turun"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Menjalankan Pelayar Tor buat kali pertama"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Jambatan, ataupun Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Mengurus identiti"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,13 +145,20 @@ msgstr "Masalah-masalah diketahui"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Mahu menjadi Penterjemah Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Menghasilkan Pelayar Tor mudah alih"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -570,6 +577,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -589,12 +598,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Sekiranya anda menggunakan sambungan pantas, palang ini seakan-akan tersekat"
-" pada satu tempat, sila rujuk halaman [Pencarisilapan](/ms/troubleshooting) "
-"untuk penyelesaian masalah tersebut."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -609,58 +615,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Jika anda tahu sambungan anda telah ditapis, atau menggunakan proksi, anda "
-"patut memilih pilihan ini. Pelayar Tor akan memaparkan beberapa siri pilihan"
-" konfigurasi."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Skrin pertama menanya sama ada capaian ke rangkaian Tor disekat atau "
-"ditapis. Jika anda tidak tahu atau tidak pasti, pilih \"Tidak\". Jika anda "
-"pasti sambungan anda telah ditapis, atau anda telah cuba beberapa kali dan "
-"masih gagal bersambung dengan rangkaian Tor dan beberapa penyelesaian lain "
-"juga gagal, pilihlah \"Ya\". Anda akan di arah ke skrin "
-"[Pemintasan](/ms/circumvention) untuk mengkonfigur satu angkutan boleh "
-"palam."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Skrin berikutnya akan menanya sama ada sambungan anda menggunakan proksi "
-"atau sebaliknya. Dalam kebanyakan situasi, ia tidak perlu. Anda biasanya "
-"tahu jika anda menjawab \"Ya\", kerana tetapan yang sama akan digunakan "
-"untuk lain-lain pelayar di dalam sistem anda. Sebaiknya, tanya pentadbir "
-"rangkaian anda untuk dapatkan panduan atau bantuan. Jika sambungan anda "
-"tidak menggunakan proksi, klik \"Teruskan\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -757,13 +783,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Angkutan meek menonjolkan diri anda sedang melayari laman sesawang utama "
-"berbanding menggunakan Tor. meek-azure menunjukan anda sedang melayari laman"
-" sesawang Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -803,36 +826,53 @@ msgstr "### MENGGUNAKAN ANGKUTAN BOLEH PALAM"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Untuk menggunakan angkutan boleh palam, klik 'Konfigur' bila memulakan "
-"Pelayar Tor buat pertama kali. Dalam tetingkap yang muncul, dari menu tarik-"
-"turun, pilih angkutan boleh palam yang anda mahu gunakan."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Atau, sekiranya Pelayar Tor anda sedang beroperasi, klik pada 'Keutamaan' "
-"dalam menu hamburger dan kemudian 'Tor' pada palang sisi. Dalam seksyen "
-"'Titi', tanda kotak semak 'Guna satu titi'. Seterusnya melalui menu tarik-"
-"turun 'Pilih satu titi terbina-dalam', pilih mana-mana angkutan boleh palam "
-"yang anda mahu gunakan."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Setelah anda memilih angkutan boleh palam yang dikehendaki, klik 'Sambung' "
-"untuk menyimpan tetapan anda."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -853,28 +893,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Jika anda cuba memintas satu sambungan disekat buat pertama kali, anda patut"
-" cuba angkutan yang lain: obfs4, snowflake, dan meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Jika anda telah cuba kesemua pilihan ini, dan tiada satu pun berjaya, anda "
-"perlu masukkan alamat-alamat titi secara manual."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Sila rujuk seksyen [Titi](/ms/bridges/) untuk ketahui apa itu titi dan "
-"bagaimana hendak mendapatkannya."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -971,42 +1005,46 @@ msgstr "### MENGGUNAKAN MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Jika anda memulakan Pelayar Tor buat pertama kali, klik 'Konfigur' untuk "
-"membuka tetingkap Tetapan Rangkaian Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Atau pun, klik pada 'Keutamaan' dalam menu hamburger (menu utama) dan "
-"kemudian 'Tor' pada palang sisi."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Di dalam tetingkap Tetapan Rangkaian Tor, pilih 'Tor ditapis dalam negara "
-"saya.'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Kemudian, pilih 'Pinta titi dari torproject.org' dan klik 'Pinta satu "
-"titi...'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Selesaikan CAPTCHA dan klik 'Serah'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1034,25 +1072,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Sekiranya anda memulakan Pelayar Tor buat kali pertama, klik 'Konfigur' "
-"untuk membuka tetingkap Tetapan Rangkaian Tor. Jika tidak, klik 'Keutamaan' "
-"pada menu hamburger (menu utama) dan kemudian pilih 'Tor' pada palang sisi "
-"untuk mencapai pilihan tersebut."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Dalam seksyen 'Titi', tanda kotak semak 'Guna satu titi', kemudian, pilih "
-"'Sediakan satu titi yang saya ketahui' dan masukkan setiap satu alamat titi "
-"dengan baris berasingan."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1687,6 +1723,8 @@ msgstr "Bagaimana hendak mengemaskini Pelayar Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1877,6 +1915,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### MASALAH-MASALAH YANG DIKETAHUI"
@@ -2258,6 +2298,806 @@ msgstr ""
"* BitTorrent sebenarnya [tidak diawanama melalui "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2403,13 +3243,13 @@ msgid "Give today, and Mozilla will match your donation."
msgstr ""
"Sumbanglah hari ini dan Mozilla akan sepadankan sumbangan ikhlas anda!"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Muat Turun Pelayar Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2417,11 +3257,11 @@ msgstr ""
"Muat turun Pelayar Tor untuk menikmati pelayaran secara persendirian tanpa "
"dijejak, diintip, atau ditapis."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Misi kami:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2433,35 +3273,35 @@ msgstr ""
"terbuka, menyokong ketersediaan dan penggunaan tanpa-had, dan melanjutkan "
"kesefahaman saintifik dan popular mereka."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Derma"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Dermalah Sekarang"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Langgani Surat Berita kami"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Dapatkan kemaskini bulanan dan peluang-peluang yang ditawarkan melalui "
"Projek Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Daftar baharu"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+nb-NO.po b/contents+nb-NO.po
index 9bb1e476c9..a7f7df1697 100644
--- a/contents+nb-NO.po
+++ b/contents+nb-NO.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: eab1793e5400043c122a2435c33fe68d, 2019\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/otf/teams/1519/nb/)\n"
@@ -81,8 +81,8 @@ msgstr "Laster ned"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Oppstart av Tor-nettleseren for fÞrste gang"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -101,8 +101,8 @@ msgstr "Broer"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Behandling av identiteter"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -148,12 +148,19 @@ msgstr "Kjente problemer"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Bli en Tor Oversetter"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -519,6 +526,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -534,7 +543,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -551,44 +560,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Hvis du vet at din tilkobling er sensurert, eller bruker en mellomtjener, "
-"bÞr du gjÞre bruk av dette valget. Tor-nettleseren vil ta deg gjennom en "
-"serie oppsettsvalg."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Den neste skjermen spÞr om din tilkobling bruker en mellomtjener. I de "
-"fleste fall, er ikke dette nÞdvendig. Du vil vanligvis vite om du trenger å "
-"svare \"Ja\", siden den samme innstillingen vil vÊre i bruk for andre "
-"nettlesere på ditt system. Hvis mulig, spÞr din nettverksadministrator om "
-"veiledning. Hvis din tilkobling ikke bruker en mellomtjener, klikk "
-"\"Fortsett\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -596,6 +613,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -683,9 +719,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -723,25 +759,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -760,21 +823,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -859,33 +922,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -912,17 +987,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1458,6 +1538,8 @@ msgstr "Hvordan oppdatere Tor-nettleseren"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1623,6 +1705,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1958,6 +2042,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2077,23 +2961,23 @@ msgstr ""
msgid "Give today, and Mozilla will match your donation."
msgstr "Gi i dag, og Mozilla matcher donasjonen din."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Last ned Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "VÃ¥rt oppdrag:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2101,33 +2985,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doner"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donér Nå"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Abonner på vårt Nyhetsbrev"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Meld deg på"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+nl.po b/contents+nl.po
index 28b606688f..b6ff5a341e 100644
--- a/contents+nl.po
+++ b/contents+nl.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Barbara Vermeirsch <christinavana(a)protonmail.com>, 2020\n"
"Language-Team: Dutch (https://www.transifex.com/otf/teams/1519/nl/)\n"
@@ -83,8 +83,8 @@ msgstr "Downloaden"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "De Tor Browser voor de eerste keer gebruiken"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -103,8 +103,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Beheren van identiteiten"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -150,13 +150,20 @@ msgstr "Bekende problemen"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Een Tor-vertaler worden"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor Browser mobiel maken"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -580,6 +587,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -599,12 +608,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Als u op een relatief snelle verbinding zit, maar deze balk lijkt op een "
-"gegeven moment vast te zitten, zie dan de pagina [Problemen "
-"oplossen](/probleemoplossing) voor hulp bij het oplossen van het probleem."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -619,57 +625,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Als u weet dat uw verbinding is gecensureerd of een proxy gebruikt, "
-"selecteer dan deze optie. Tor Browser zal u door een reeks "
-"configuratieopties loodsen."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Het eerste scherm vraagt of de toegang tot het Tor-netwerk geblokkeerd of "
-"gecensureerd is op je verbinding. Als je niet gelooft dat dit het geval is, "
-"selecteer dan \"Nee\". Als je weet dat je verbinding gecensureerd is, of u "
-"hebt geprobeerd en gefaald om verbinding te maken met het Tor netwerk en "
-"geen andere oplossingen hebben gewerkt, selecteer dan \"Ja\". Je wordt dan "
-"naar het [Circumvention](/circumvention) scherm gebracht om een aansluitbaar"
-" transport te configureren."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Het volgende scherm vraagt of uw verbinding een proxy gebruikt. In de meeste"
-" gevallen is dit niet nodig. U zult meestal zelf weten of u \"Ja\" moet "
-"antwoorden, omdat dezelfde instellingen door andere browsers op uw computer "
-"worden gebruikt. Vraag uw netwerk-administrator om hulp als dat mogelijk is."
-" Als uw verbinding geen proxy nodig heeft, klik op \"Verder\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -766,14 +793,10 @@ msgstr "bescheiden"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"De bescheidenheid van de transporten zorgt ervoor dat het lijkt alsof je een"
-" grote website bezoekt in plaats van Tor. De bescheidenheid van de "
-"transporten zorgt ervoor dat het lijkt alsof je een Microsoft-website "
-"gebruikt."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -810,25 +833,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -847,21 +897,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -946,33 +996,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -999,17 +1061,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1551,6 +1618,8 @@ msgstr "Hoe de Tor Browser updaten"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1716,6 +1785,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2060,6 +2131,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2179,13 +3050,13 @@ msgstr "DONEER NU"
msgid "Give today, and Mozilla will match your donation."
msgstr "Geef vandaag, en Mozilla geeft hetzelfde bedrag."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2193,11 +3064,11 @@ msgstr ""
"Download Tor Browser om te ervaren hoe het is om echt privé te surfen zonder"
" volgen, toezicht of censuur."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Onze missie"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2210,33 +3081,33 @@ msgstr ""
"steunen, en het begrip ervoor in de wetenschap en bij het algemeen publiek "
"te bevorderen."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doneer"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Nu doneren"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Schijf je in voor onze nieuwsbrief"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Ontvang maandelijkse nieuwtjes en kansen van het Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Aanmelden"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+pl.po b/contents+pl.po
index cb2cc107d5..81b911ee71 100644
--- a/contents+pl.po
+++ b/contents+pl.po
@@ -1,22 +1,22 @@
# Translators:
# Emma Peel, 2019
# Filip <filipiczesio(a)vp.pl>, 2019
-# Dawid Potocki <dpot(a)disroot.org>, 2019
-# erinm, 2019
# MichaÅ Nowak <nowak1michal(a)gmail.com>, 2019
# Marcin Januchta <marcin.januchta(a)gmail.com>, 2019
# Bartlomiej, 2020
# Dawid Job <hoek(a)tuta.io>, 2020
# Waldemar Stoczkowski, 2020
# Bartosz Duszel <bartosz.duszel(a)protonmail.com>, 2020
+# erinm, 2020
+# Dawid Potocki <dpot(a)disroot.org>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Bartosz Duszel <bartosz.duszel(a)protonmail.com>, 2020\n"
+"Last-Translator: Dawid Potocki <dpot(a)disroot.org>, 2020\n"
"Language-Team: Polish (https://www.transifex.com/otf/teams/1519/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -85,8 +85,8 @@ msgstr "Pobieranie"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Pierwsze uruchomienie PrzeglÄ
darki Tor"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -105,8 +105,8 @@ msgstr "Mosty"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "ZarzÄ
dzanie toÅŒsamoÅciami"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -152,13 +152,20 @@ msgstr "Znane problemy"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "ZostaÅ tÅumaczem Tor "
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tworzenie przenoÅnej wersji PrzeglÄ
darki Tor"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -581,6 +588,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -600,12 +609,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"JeÅŒeli korzystasz ze wzglÄdnie szybkiego poÅÄ
czenia, a mimo to pasek stanu "
-"utknie w jednym miejscu, sprawdź stronÄ [RozwiÄ
zywanie "
-"problemów](/troubleshooting) by znaleÅºÄ pomoc."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -620,58 +626,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"JeÅli wiesz, ÅŒe twoje poÅÄ
czenie jest cenzurowane lub uÅŒywasz proxy, "
-"powinieneÅ wybraÄ tÄ opcjÄ. PrzeglÄ
darka Tor przeprowadzi ciÄ przez proces "
-"konfiguracji."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Na pierwszym ekranie pojawi siÄ pytanie, czy dostÄp do sieci Tor jest "
-"zablokowany lub cenzurowany w twoim poÅÄ
czeniu. JeÅŒeli uwaÅŒasz, ÅŒe tak nie "
-"jest, wybierz \"Nie\". JeÅŒeli natomiast wiesz, ÅŒe twoje poÅÄ
czenie jest "
-"cenzurowane lub próbowaÅeÅ i nie udaÅo ci siÄ poÅÄ
czyÄ z sieciÄ
Tor oraz "
-"ÅŒadne inne rozwiÄ
zania nie zadziaÅaÅy, wybierz \"Tak\". Zostaniesz nastÄpnie"
-" przeniesiony do ekranu [Omijanie blokad](/pl/circumvention), aby "
-"skonfigurowaÄ transport wtykowy."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Kolejny ekran zapyta, czy twoje poÅÄ
czenie korzysta z serwera proxy. W "
-"wiÄkszoÅci przypadków nie jest to niezbÄdne. Zazwyczaj bÄdziesz wiedzieÄ, "
-"czy musisz odpowiedzieÄ \"Tak\", poniewaÅŒ takie same ustawienia bÄdÄ
uÅŒywane"
-" w innych przeglÄ
darkach w twoim systemie. JeÅŒeli to moÅŒliwe, poproÅ "
-"administratora swojej sieci o wskazówki. JeÅŒeli twoje poÅÄ
czenie nie "
-"korzysta z serwera proxy, kliknij \"Kontynuuj\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -767,13 +793,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Transporty meek sprawiajÄ
ÅŒe wyglÄ
dasz jak byÅ przeglÄ
daÅ popularnÄ
stronÄ "
-"internetowÄ
a nie korzystaÅ z Tora. meek-azure sprawia, ÅŒe wyglÄ
dasz, jak "
-"byÅ korzystaÅ ze strony internetowej Microsoftu."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -812,35 +835,53 @@ msgstr "### UÅ»YWANIE TRANSPORTÃW WTYKOWYCH"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"Aby skorzystaÄ z transportów wtykowych, kliknij 'Konfiguruj' po pierwszym "
-"uruchomieniu PrzeglÄ
darki Tor. W oknie, które siÄ pojawi, wybierz z "
-"rozwijanej listy dowolny, interesujÄ
cy ciÄ transport wtykowy."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"JeÅŒeli PrzeglÄ
darka Tor jest juŌ uruchomiona, kliknij 'Preferencje' w "
-"hamburger menu a nastÄpnie 'Tor' w panelu bocznym. W sekcji 'Mosty', zaznacz"
-" pole 'UÅŒyj mostu' a nastÄpnie, z rozwijanej listy 'Wybierz wbudowany most' "
-"zaznacz dowolny, interesujÄ
cy ciÄ transport wtykowy, który chcesz uÅŒyÄ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Po wybraniu wtykowego transportu, którego chcesz uÅŒyÄ, kliknij 'PoÅÄ
cz', aby"
-" zapisaÄ ustawienia."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -860,28 +901,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"JeÅŒeli próbujesz obejÅÄ zablokowane poÅÄ
czenie po raz pierwszy, powinieneÅ "
-"spróbowaÄ róŌnych transportów: obfs4, snowflake oraz meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"JeÅŒeli wypróbujesz wszystkie te opcje, a ÅŒadna z nich nie zapewni ci dostÄpu"
-" do Internetu, bÄdziesz musiaÅ wprowadziÄ adresy mostu rÄcznie."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Przeczytaj sekcje [Mosty](/pl/bridges/), aby dowiedzieÄ siÄ czym sÄ
mosty i "
-"jak je uzyskaÄ. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -981,41 +1016,46 @@ msgstr "### UŻYWANIE MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"JeÅŒeli uruchamiasz PrzeglÄ
darkÄ Tor po raz pierwszy, kliknij 'Konfiguruj' "
-"aby otworzyÄ okno UstawieÅ SieÄ Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"W przeciwnym wypadku kliknij 'Preferencje' w hamburger menu (menu gÅówne) a "
-"nastÄpnie 'Tor' w panelu bocznym."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"W oknie Ustawienia Sieci Tor, wybierz 'Tor jest cenzurowany w moim kraju'."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"NastÄpnie wybierz 'ZaÅŒÄ
daj mostu od torproject.org' i kliknij 'ZaÅŒÄ
daj "
-"mostu...'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "WypeÅnij CAPTCHA i kliknij 'WyÅlij'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1043,24 +1083,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"JeÅŒeli uruchamiasz PrzeglÄ
darkÄ Tor po raz pierwszy, kliknij 'Konfiguruj' "
-"aby otworzyÄ okno UstawieÅ SieÄ Tor. W przeciwnym wypadku kliknij "
-"'Preferencje' w hamburger menu (menu gÅówne) a nastÄpnie 'Tor' w panelu "
-"bocznym."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"W sekcji 'Mosty', zaznacz pole 'UÅŒyj mostu', nastÄpnie zaznacz 'Wybierz "
-"most, który znam' i wprowadź adres kaŌdego mostu w osobnej linii."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1698,6 +1737,8 @@ msgstr "Jak zaktualizowaÄ PrzeglÄ
darkÄ Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1888,6 +1929,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### ZNANE PROBLEMY"
@@ -2279,6 +2322,819 @@ msgstr ""
"* BitTorrent w szczególnoÅci [nie jest anonimowy wewnÄ
trz "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Przekaźniki mostkowe to przekaźniki Tora, które nie sÄ
wymienione w "
+"publicznym katalogu Tora."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Mosty sÄ
przydatne dla uŌytkowników Tora w opresyjnych reŌimach, a takŌe dla"
+" osób, które chcÄ
dodatkowej warstwy bezpieczeÅstwa, poniewaÅŒ obawiajÄ
siÄ, "
+"ÅŒe ktoÅ rozpozna, ÅŒe kontaktujÄ
siÄ z publicznym adresem IP przekaźnika Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Polecamy aplikacjÄ na iOS o nazwie Onion Browser, która jest aplikacjÄ
open "
+"source, która uÅŒywa routingu Tor i jest rozwijana przez kogoÅ, kto ÅciÅle "
+"wspóÅpracuje z Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"JednakÅŒe Apple wymaga, aby przeglÄ
darki w systemie iOS korzystaÅy z czegoÅ, "
+"co nazywa siÄ Webkit, co uniemoÅŒliwia Onion Browser korzystania z takich "
+"samych zabezpieczeÅ prywatnoÅci jak w przypadku przeglÄ
darki Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Aktualnie nie ma ÅŒadnego sposobu aby uruchomiÄ Tor na telefonach z "
+"Windowsem."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2426,13 +3282,13 @@ msgstr "ZRÃB DOTACJE"
msgid "Give today, and Mozilla will match your donation."
msgstr "PrzekaÅŒ dziÅ, a Mozilla podwoi TwojÄ
dotacjÄ."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Pobierz przeglÄ
darkÄ Tor"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2440,11 +3296,11 @@ msgstr ""
"Pobierz PrzeglÄ
darkÄ Tor, aby doÅwiadczyÄ prawdziwie prywatnego przeglÄ
dania"
" bez Åledzenia, nadzoru oraz cenzury."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Nasza misja:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2456,33 +3312,33 @@ msgstr ""
"nieograniczonej dostÄpnoÅci i wykorzystania oraz propagowanie ich naukowego "
"i powszechnego zrozumienia."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "WspomóŌ finansowo"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Wesprzyj teraz"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Zapisz siÄ do naszego newslettera"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Uzyskaj comiesiÄczne aktualizacje i moÅŒliwoÅci od Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Zarejestruj siÄ"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+pt-BR.po b/contents+pt-BR.po
index d6ad041d32..bebc531f44 100644
--- a/contents+pt-BR.po
+++ b/contents+pt-BR.po
@@ -1,24 +1,25 @@
# Translators:
# Alexei Gonçalves de Oliveira <alexis(a)gessicahellmann.com>, 2019
# Cy Belle <cyb3ll3(a)protonmail.com>, 2019
-# erinm, 2019
# blueboy, 2019
# Anderson Santos <anderson.jms94(a)hotmail.com>, 2019
# C. E., 2019
# m tk, 2019
# Caio Volpato <caio.volpato(a)riseup.net>, 2019
# Gus, 2019
-# Emma Peel, 2020
# Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>, 2020
# Communia <ameaneantie(a)riseup.net>, 2020
+# erinm, 2020
+# Eduardo Bonsi, 2020
+# Emma Peel, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Communia <ameaneantie(a)riseup.net>, 2020\n"
+"Last-Translator: Emma Peel, 2020\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"
@@ -87,8 +88,8 @@ msgstr "Fazendo download"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Executando o Navegador Tor pela primeira vez"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -107,8 +108,8 @@ msgstr "Pontes"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gerenciando identidades"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -154,13 +155,20 @@ msgstr "Problemas conhecidos"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tornando-se um tradutor Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tornando o Navegador Tor portátil"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -581,6 +589,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -600,12 +610,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Se você estiver utilizando uma conexão relativamente rápida, mas a barra "
-"pausar em dado momento, consulte a página de [Solução de problemas](/pt-"
-"BR/troubleshooting/) para obter ajuda."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -620,56 +627,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Se você souber que a sua conexão está sendo censurada, ou que ela usa proxy,"
-" é melhor selecionar esta opção. O Navegador Tor a/o guiará em uma série de "
-"opções de configuração."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"A primeira tela pergunta se a sua conexão bloqueia ou censura o seu acesso à "
-" rede Tor. Se você não acredita que seja o caso, selecione âNãoâ. Se você "
-"souber que a sua conexão é cesurada ou se você tiver tentado mas não "
-"conseguido se conectar à rede Tor, e que nenhuma solução tiver dado certo, "
-"selecione âSimâ. A tela [Contornar a censura](/pt-BR/circumvention) será "
-"aberta para que você configure um transportador plugável."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"A próxima tela pergunta se a sua conexão usa proxy. Na maioria dos casos não"
-" é necessário utilizá-los e normalmente você sabe se a resposta for âSimâ já"
-" que os mesmos parâmetros são usados por outros navegadores do seu sistema. "
-"Se possÃvel, consulte a pessoa responsável pela administração da sua rede. "
-"Caso a sua conexão não use proxy, clique em âContinuarâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -767,13 +796,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Transportes meek fazem parecer que você está navegando nos principais web "
-"sites ao invés do Tor. Meek-azure faz parecer que você está acessando algum "
-"web site da Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -812,37 +838,53 @@ msgstr "### Usando transportes plugáveis "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"Para usar um transporte plugável, clique em 'Configurar' quando o Navegador "
-"Tor estiver sendo iniciado pela primeira vez. Na janela que aparece, a "
-"partir do menu suspenso, selecione o transporte plugável que deseja "
-"utilizar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Ou, se você está com Navegador Tor rodando, clique em 'preferências' no menu"
-" principal (menu hambúrguer) e então Tor na barra lateral. Na secção de "
-"'Bridges', selecione a caixa 'Usar uma bridge', e do menu deslizante "
-"'Selecionar uma Bridge embutida', escolha o transporte plugável que deseja "
-"utilizar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Uma vez que você selecionou o transporte plugável que você gostaria de "
-"utilizar, clique em 'Conectar' para salvar suas configurações."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -862,29 +904,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Se você está tentando contornar uma conexão bloqueada pela primeira vez, "
-"você deveria tentar um transporte plugável como: obfs4, showflake e meek-"
-"azure. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Se você tentar todas essas opções e nenhuma te conectar, você precisa "
-"colocar um endereço de ponte manualmente."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Leia a secção [Bridges](/pt-BR/bridges/) para aprender o que são bridges e "
-"como obtê-las. "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -980,42 +1015,46 @@ msgstr "### Usando MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Se você está iniciando o Navegador Tor pela primeira vez, clique em "
-"'Configurar' para abrir a janela de configuração da rede Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Caso contrario, clique em 'preferências' no menu principal (menu hambúrguer)"
-" então 'Tor' na barra lateral."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Na janela de configurações de rede Tor, selecione 'Tor é censurado no meu "
-"paÃs'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Então selecione 'Solicitar uma bridge a partir de torproject.org' e clique "
-"'Solicitar uma bridge ...'"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete o CAPTCHA e clique em 'Submeter'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1043,25 +1082,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Se você está iniciando o Navegador Tor pela primeira vez, clique em "
-"'Configurar' para abrir a janela de configuração da rede Tor. Caso contrario"
-" clique em 'preferências' no menu principal (menu hambúrguer) e então em "
-"'Tor' na barra lateral para acessar essas opções."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Na secção 'Bridges', habilite a caixa de seleção 'Usar uma bridge', então "
-"selecionar 'fornecer uma bridge que conheço' e coloque um endereço de ponte "
-"por linha."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1691,6 +1728,8 @@ msgstr "Como atualizar o Navegador Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1878,6 +1917,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLEMAS CONHECIDOS"
@@ -2265,6 +2306,820 @@ msgstr ""
"* O BitTorrent em especÃfico é [não anÃŽnimo sobre "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Relays pontes são relays do Tor que não estão listados no diretório público "
+"do Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Pontes são úteis para pssoas usando Tor em lugares sob regimes ditatoriais, "
+"e também para pessoas que queiram uma camada extra de segurança, porque elas"
+" se preocupam com a possibilidade de serem identificadas como alguém que "
+"utiliza um endereço de IP público de um relay Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Nós recomendamos para iOS o aplicativo Onion Browser, que é open source, usa"
+" roteamento Tor, e é desenvolvido por alguém que participa de perto com o "
+"Tor Project"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"No entanto, a Apple exige que os navegadores para iOS utilizem algo chamado "
+"Webkit, o que inviabiliza os navegadores onion de possuir as mesmas "
+"proteções de privacidade que o navegador Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Saiba mais sobre o Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "Atualmente não existe suporte para execução do Tor no Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2404,13 +3259,13 @@ msgstr "DOE AGORA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Doe hoje, e a Mozilla duplicará a sua doação."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Baixe o Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2418,11 +3273,11 @@ msgstr ""
"Faça download do Navegador Tor para experimentar uma navegação realmente "
"privada, sem rastreamento, vigilância ou censura."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Nossa missão:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2434,33 +3289,33 @@ msgstr ""
"aberto, provendo apoio a seu uso e disponibilidade irrestritos. Ao mesmo "
"tempo, contribuÃmos para o avanço de sua compreensão cientÃfica e popular. "
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doar"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Doe Agora"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Assine o nosso boletim de notÃcias"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Receba atualizações mensais e oportunidades do Projeto Tor."
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registo"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+pt-PT.po b/contents+pt-PT.po
index fe627286d4..adcf9945f0 100644
--- a/contents+pt-PT.po
+++ b/contents+pt-PT.po
@@ -1,15 +1,15 @@
# Translators:
# Emma Peel, 2019
-# erinm, 2019
-# Rui <xymarior(a)yandex.com>, 2020
# Hugo9191 <hugoncosta(a)gmail.com>, 2020
+# erinm, 2020
+# Rui <xymarior(a)yandex.com>, 2020
# Manuela Silva <manuelarodsilva(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Manuela Silva <manuelarodsilva(a)gmail.com>, 2020\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/otf/teams/1519/pt_PT/)\n"
@@ -80,8 +80,8 @@ msgstr "Transferência"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Executar o Tor Browser pela primeira vez"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -100,8 +100,8 @@ msgstr "Pontes"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Gerir Identidades"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -147,13 +147,20 @@ msgstr "Problemas conhecidos"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Traduzir o Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tornar o Tor Browser portátil"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -574,6 +581,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -593,12 +602,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Se estiver numa ligação relativamente rápida, mas esta barra parecer estar "
-"bloqueada num ponto determinado, consulte a página de [Resolução de "
-"Problemas](/troubleshooting) para ajudar a resolver o problema."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -613,57 +619,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Se souber que a sua conexão está a ser censurada, ou que esta usa um proxy, "
-"é melhor selecionar esta opção. O Tor Browser irá mostrar uma série de "
-"opções de configuração."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"O primeiro ecrã pergunta se o seu acesso à rede Tor está a ser bloqueado ou "
-"censurado. Se acha que não é este o caso, selecione âNãoâ. Se souber que a "
-"sua conexão é censurada ou se tentou mas não conseguiu conectar-se à rede "
-"Tor e que nenhuma outra solução funcionou, selecione âSimâ. Irá aparecer o "
-"ecrã [Contornamento](/pt-pt/circumvention) para que configure um transporte "
-"de ligação."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"O próximo ecrã pergunta se a sua conexão usa um proxy. Na maioria dos casos,"
-" isto não é necessário. Normalmente o utilizador saberá se usa um, sendo "
-"então a sua resposta âSimâ, já que os mesmos parâmetros são usados também em"
-" outros navegadores de Internet. Se possÃvel, consulte a pessoa responsável "
-"pela administração da sua rede. Caso a sua conexão não use um proxy, clique "
-"em âContinuarâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -760,13 +787,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"Os transportes \"meek\" fazem com que pareça que está a navegar por um "
-"grande ''site'' da Web em vez de utilizar o Tor. meek-azure faz com que "
-"pareça que está a utilizar um ''site'' da Web da Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -805,35 +829,53 @@ msgstr "### UTILIZANDO OS TRANSPORTES DE LIGAÃÃO"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"Para usar um transporte encaixável, clique em \"Configurar\" quando começar "
-"o Tor Browser pela primeira vez. Na janela em que aparecer, no menu lista, "
-"selecione o transporte que preferir usar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Ou, se tiver o Tor Browser a funcionar, clique em \"Preferências\" no menú "
-"\"hamburger\" e daà em \"Tor\" na barra lateral. Na secção de \"Pontes\", "
-"selecione a caixa \"Usar uma ponte\", e do menu lista \"Selecionar uma ponte"
-" integrada\", escolha o transporte encaixável que preferir usar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Após selecionar o transportes de ligação que quer, clique em 'Conectar' para"
-" gravar as configurações."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -854,28 +896,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"Se estiver a tentar contornar uma conexão bloqueada pela primeira vez, deve "
-"tentar transportes diferentes: obfs4, snowflake e meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Se tentar todas essas opções e ainda assim não conseguir conectar-se, será "
-"preciso inserir os endereços das pontes manualmente. "
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Leia a secção [Pontes](/pt-PT/bridges/) para saber o que são as pontes e "
-"como as obter."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -975,42 +1011,46 @@ msgstr "### UTILIZAR MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Se estiver a iniciar o Tor Browser pela primeira vez, clique em "
-"\"Configurar\" para abrir a janela das \"Definições\" da Rede Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Caso contrário, clique em \"Preferências\" no menu \"hamburger\" (menu "
-"principal) e depois em \"Tor\" na barra lateral."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Na janela das \"Definições\" da Rede Tor, selecione \"O Tor é censurado no "
-"meu paÃs\". "
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Depois, selecione \"Solicitar uma ponte do torproject.org\" e clique em "
-"\"Solicitar uma ponte...\""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete o CAPTCHA e clique em \"Submeter\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1038,25 +1078,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Se estiver a iniciar o Tor Browser pela primeira vez, clique em "
-"\"Configurar\" para abrir a janela das \"Definições\" da Rede Tor. Caso "
-"contrário, clique em \"Preferências\" no menu \"hamburger\" (menu principal)"
-" e depois em \"Tor\" na barra lateral."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Na secção \"Pontes\", selecione a caixa \"Utilizar uma ponte\", depois, "
-"selecione \"Fornecer uma ponte que eu conheça\" e digite cada um dos "
-"endereços de ponte numa linha separada."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1686,6 +1724,8 @@ msgstr "Como atualizar o Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1872,6 +1912,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLEMAS CONHECIDOS"
@@ -2261,6 +2303,820 @@ msgstr ""
"* BitTorrent em especÃfico [não é anónimo através do "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Os retransmissores de ponte são retransmissores Tor que não estão listados "
+"no diretório Tor público."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"As pontes são úteis para os utilizadores do Tor que estejam em regimes "
+"repressivos e para pessoas que queiram uma segurança extra porque estão "
+"preocupados que alguém saiba que estão a contactar um endereço IP público de"
+" um retransmissor Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Nós recomendamos uma aplicação para iOS chamada de Onion Browser, que é de "
+"código aberto, usa reencaminhamento Tor e é desenvolvido por alguém que "
+"trabalha de perto com o Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Contudo, a Apple exige que os navegadores no iOS usem algo chamado de "
+"Webkit, que impede que o Onion Browser tenha as mesmas proteções de "
+"privacidade que o Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Atualmente, não existe nenhum método suportado para executar o Tor no "
+"Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2406,13 +3262,13 @@ msgstr "DOAR AGORA"
msgid "Give today, and Mozilla will match your donation."
msgstr "Doe hoje, e a Mozilla corresponderá à sua doação."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Transferir Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2420,11 +3276,11 @@ msgstr ""
"Transfira o Tor Browser para experimentar uma navegação privada real sem "
"monitorização, vigilância ou censura."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "A nossa missão:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2436,33 +3292,33 @@ msgstr ""
"a sua disponibilidade e utilização não restringida, e contribuindo para o "
"avanço da sua compreensão cientÃfica e popular. "
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Doar"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Doar Agora"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscreva o nosso Boletim Informativo"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Receba atualizações mensais e oportunidades do projeto Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registar"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ro.po b/contents+ro.po
index fdc5b8cd23..2c0f397ee6 100644
--- a/contents+ro.po
+++ b/contents+ro.po
@@ -3,16 +3,16 @@
# A C <ana(a)shiftout.net>, 2019
# erinm, 2019
# Iasmina Gruicin <myna_90(a)yahoo.com>, 2019
-# Emma Peel, 2019
# eduard pintilie <eduard.pintilie(a)gmail.com>, 2020
+# Emma Peel, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: eduard pintilie <eduard.pintilie(a)gmail.com>, 2020\n"
+"Last-Translator: Emma Peel, 2020\n"
"Language-Team: Romanian (https://www.transifex.com/otf/teams/1519/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -81,8 +81,8 @@ msgstr "Se descarcÄ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Rularea Tor Browser pentru prima datÄ"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -101,8 +101,8 @@ msgstr "PunÈi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Administrarea identitÄÈilor"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -148,13 +148,20 @@ msgstr "Probleme cunoscute"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Cum puteÈi deveni un Translator Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Crearea Tor Browser portabil"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -576,6 +583,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -595,12 +604,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"DacÄ sunteÈi pe o conexiune relativ rapidÄ, dar aceastÄ barÄ pare sÄ se "
-"blocheze într-un anumit moment, consultaÈi pagina "
-"[Depanare](/ro/troubleshooting) pentru a ajuta la rezolvarea problemei."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -615,58 +621,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"DacÄ ÈtiÈi cÄ conexiunea dvs. este cenzuratÄ sau dacÄ folosiÈi un proxy, "
-"trebuie sÄ selectaÈi aceastÄ opÈiune. Tor Browser vÄ va duce printr-o serie "
-"de opÈiuni de configurare."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"Primul ecran vÄ Ã®ntreabÄ dacÄ accesul la reÈeaua Tor este blocat sau "
-"cenzurat pe conexiunea dvs. DacÄ credeÈi cÄ nu este cazul, selectaÈi âNuâ. "
-"DacÄ ÈtiÈi cÄ conexiunea dvs. este cenzuratÄ sau aÈi încercat Èi nu aÈi "
-"reuÈit sÄ vÄ conectaÈi la reÈeaua Tor Èi nu au funcÈionat alte soluÈii, "
-"selectaÈi âDaâ. Apoi veÈi fi dus la ecranul "
-"[CircumvenÈie](/ro/circumvention) pentru a configura un transport "
-"conectabil."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"UrmÄtorul ecran vÄ Ã®ntreabÄ dacÄ conexiunea utilizeazÄ un proxy. Ãn "
-"majoritatea cazurilor, acest lucru nu este necesar. De obicei, ÈtiÈi dacÄ "
-"trebuie sÄ rÄspundeÈi la \"Da\", deoarece aceleaÈi setÄri vor fi utilizate "
-"pentru alte browsere din sistemul dvs. DacÄ este posibil, adresaÈi-vÄ "
-"administratorului de reÈea pentru îndrumare. DacÄ conexiunea dvs. nu "
-"utilizeazÄ un proxy, daÈi clic pe \"ContinuaÈi\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -763,12 +789,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek transports fac sÄ parÄ cÄ navighezi de pe un site web important în "
-"locul Tor. meek-azure face sÄ parÄ cÄ foloseÈti un site web Microsoft."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -807,37 +831,53 @@ msgstr "### UTILIZAREA TRANSPORTURILOR CONECTABILE"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Pentru a utiliza un transport conectabil, faceÈi clic pe âConfigurareâ când "
-"porniÈi Tor Browser pentru prima datÄ. Ãn fereastra care apare, din meniul "
-"derulant, selectaÈi orice transport conectabil pe care doriÈi sÄ-l "
-"utilizaÈi."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
-"Sau, dacÄ Tor Browser ruleazÄ deja, faceÈi clic în bara lateralÄ pe "
-"âPreferinÈeâ din meniul hamburger Èi apoi pe âTorâ. Ãn secÈiunea âPoduriâ, "
-"bifaÈi caseta âUtilizaÈi un podâ, iar din meniul derulant âSelectaÈi un pod "
-"încorporatâ, alegeÈi orice transport conectabil pe care doriÈi sÄ-l "
-"utilizaÈi."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"DupÄ ce aÈi selectat transportul conectabil pe care doriÈi sÄ-l utilizaÈi, "
-"faceÈi clic pe âConectaÈiâ pentru a salva setÄrile."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -858,28 +898,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"DacÄ Ã®ncercaÈi sÄ evitaÈi o conexiune blocatÄ pentru prima datÄ, ar trebui "
-"sÄ Ã®ncercaÈi diferitele transporturi: obfs4, snowflake Èi meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"DacÄ Ã®ncercaÈi toate aceste opÈiuni Èi niciuna dintre ele nu vÄ primeÈte "
-"online, va trebui sÄ introduceÈi manual adresele Bridge."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"CitiÈi secÈiunea [Poduri](/ro/bridges/) pentru a afla ce sunt podurile Èi "
-"cum sÄ le obÈineÈi."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -978,42 +1012,46 @@ msgstr "### FOLOSIREA MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"DacÄ porniÈi Tor Browser pentru prima datÄ, faceÈi clic pe âConfigurareâ "
-"pentru a deschide fereastra Tor Network Settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Ãn caz contrar, faceÈi clic pe âPreferinÈeâ din meniul hamburger (meniul "
-"principal) Èi apoi pe âTorâ în bara lateralÄ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Ãn fereastra Tor Network Settings, selectaÈi âTor este cenzurat în Èara "
-"meaâ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Apoi, selectaÈi âSolicitarea unui pod de pe torproject.orgâ Èi faceÈi clic "
-"pe âSolicitarea unui pod ...â"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "CompletaÈi CAPTCHA Èi faceÈi clic pe 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1041,25 +1079,23 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"DacÄ porniÈi Tor Browser pentru prima datÄ, faceÈi clic pe âConfigurareâ "
-"pentru a deschide fereastra Tor Network Settings. Ãn caz contrar, faceÈi "
-"clic pe âPreferinÈeâ din meniul hamburger (meniul principal) Èi apoi pe "
-"âTorâ din bara lateralÄ pentru a accesa aceste opÈiuni."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"Ãn secÈiunea âPoduriâ, bifaÈi caseta âUtilizaÈi un podâ, apoi selectaÈi "
-"âFurnizaÈi un pod pe care îl cunoscâ Èi introduceÈi fiecare adresÄ de pod pe"
-" câte o linie separatÄ."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1701,6 +1737,8 @@ msgstr "Cum sÄ actualizezi navigatorul Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1888,6 +1926,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### PROBLEME CUNOSCUTE"
@@ -2278,6 +2318,822 @@ msgstr ""
"* Ãn anumite cazuri, BitTorrent [nu este anonim peste "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Releele Bridge sunt relee Tor care nu sunt listate în directorul public Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Podurile sunt utile pentru utilizatorii Tor în regimuri opresive Èi pentru "
+"persoanele care doresc un grad suplimentar de securitate, deoarece sunt "
+"îngrijoraÈi despre faptul cÄ cineva va recunoaÈte cÄ contacteazÄ o adresÄ IP"
+" a releului public Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"VÄ recomandÄm o aplicaÈie iOS numitÄ Onion Browser, care este open source, "
+"foloseÈte rutarea Tor Èi este dezvoltatÄ de cineva care lucreazÄ Ã®ndeaproape"
+" cu Proiectul Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Cu toate acestea, Apple cere browserele de pe iOS sÄ foloseascÄ ceva numit "
+"Webkit, care împiedicÄ Onion Browser sÄ aibÄ aceleaÈi protecÈii de "
+"confidenÈialitate ca Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[AflaÈi mai multe despre Onion Browser](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"DescÄrcaÈi Onion Browser din [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Ãn prezent, nu existÄ o metodÄ acceptatÄ pentru a rula Tor pe Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2416,13 +3272,13 @@ msgstr "DONAÈI ACUM"
msgid "Give today, and Mozilla will match your donation."
msgstr "DoneazÄ azi, Èi Mozilla va dona în aceeaÈi mÄsurÄ."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "DescÄrcare Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2430,11 +3286,11 @@ msgstr ""
"DescÄrcaÈi Tor Browser pentru a vÄ bucura de navigarea privatÄ realÄ fÄrÄ "
"urmÄrire, supraveghere sau cenzurÄ."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Misiunea noastrÄ:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2446,33 +3302,33 @@ msgstr ""
"Èi cu sursÄ deschisÄ, sprijinirea disponibilitÄÈii Èi utilizÄrii lor "
"nerestricÈionate Èi promovarea înÈelegerii lor ÈtiinÈifice Èi populare."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "DoneazÄ"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "DoneazÄ Acum"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "AbonaÈi-vÄ la newsletter-ul nostru"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ObÈineÈi actualizÄri lunare Èi oportunitÄÈi din Proiectul Tor:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Ãnscriere"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+ru.po b/contents+ru.po
index eadbd7a8ab..e4295d7c04 100644
--- a/contents+ru.po
+++ b/contents+ru.po
@@ -8,16 +8,16 @@
# IvanLykov <chabib(a)list.ru>, 2019
# diana azaryan <dianazryn(a)gmail.com>, 2019
# Andrey Kostrikov <yavinav(a)gmail.com>, 2019
-# Sergey Smirnov <cj75300(a)gmail.com>, 2020
# Emma Peel, 2020
+# Sergey Smirnov <cj75300(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: Sergey Smirnov <cj75300(a)gmail.com>, 2020\n"
"Language-Team: Russian (https://www.transifex.com/otf/teams/1519/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -86,8 +86,8 @@ msgstr "ÐагÑÑзка"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "ÐеÑвÑй запÑÑк Tor Browser"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -106,8 +106,8 @@ msgstr "ÐПÑÑÑ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "УпÑавлеМОе лОÑМПÑÑÑЌО"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -153,13 +153,20 @@ msgstr "ÐÑПбеММПÑÑО Tor Browser"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "СÑаÑÑ Ð¿ÐµÑевПЎÑОкПЌ Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "ÐПÑÑаÑОвМÑй Tor Browser"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -559,6 +566,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -576,7 +585,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -593,48 +602,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"ÐаÑе пПЎклÑÑеМОе пПЎ ÑеМзÑÑПй? ÐлО ваЌ пÑОÑ
ПЎОÑÑÑ ÑабПÑаÑÑ ÑеÑез пÑПкÑО? "
-"ТПгЎа вÑбеÑОÑе ÑÑÐŸÑ Ð²Ð°ÑОаМÑ. ÐПМаЎПбОÑÑÑ ÐžÐ·ÐŒÐµÐœÐžÑÑ ÐœÐµÐºÐŸÑПÑÑе МаÑÑÑПйкО."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Ðалее ÑлеЎÑÐµÑ Ð²ÐŸÐ¿ÑÐŸÑ ÐŸ пÑПкÑО. Ðак пÑавОлП, пÑПкÑО Ме ОÑпПлÑзÑеÑÑÑ. ÐÑлО "
-"пÑПкÑО вклÑÑеМ, вÑ, ÑкПÑее вÑегП, Ñже зМаеÑе Пб ÑÑПЌ: Ñе же МаÑÑÑПйкО еÑÑÑ Ð²"
-" ÐŽÑÑгОÑ
бÑаÑзеÑаÑ
. ÐПпÑПÑОÑе ваÑегП ÑОÑÑеЌМПгП аЎЌОМОÑÑÑаÑПÑа пПЌПÑÑ (пП "
-"вПзЌПжМПÑÑО). ÐÑлО пÑПкÑО Ме ОÑпПлÑзÑеÑÑÑ, МажЌОÑе \"ÐÑПЎПлжОÑÑ\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -728,9 +767,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -770,25 +809,52 @@ msgstr "### ÐСÐÐÐЬÐÐÐÐÐÐÐ ÐÐÐÐÐЮЧÐÐÐЫХ ТРÐÐСÐÐÐ
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -810,25 +876,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"ÐÑлО Ð²Ñ Ð¿ÑÑаеÑеÑÑ ÐŸÐ±ÐŸÐ¹ÑО заблПкОÑПваММПе ÑПеЎОМеМОе в пеÑвÑй Ñаз, Ð²Ñ ÐŽÐŸÐ»Ð¶ÐœÑ "
-"пПпÑПбПваÑÑ ÑазлОÑМÑе ÑÑаМÑпПÑÑМÑ: obfs4, snowflake О meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"ÐÑлО Ð²Ñ Ð¿ÑПбÑеÑе вÑе ÑÑО ваÑОаМÑÑ, О МО ПЎОМ Оз МОÑ
Ме пПЎклÑÑÐ°ÐµÑ Ð²Ð°Ñ Ðº "
-"ÑеÑО, ваЌ МÑжМП бÑÐŽÐµÑ Ð²Ð²ÐµÑÑО аЎÑеÑа ЌПÑÑа вÑÑÑМÑÑ."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -914,33 +976,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -969,17 +1043,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1544,6 +1623,8 @@ msgstr "Ðак ПбМПвОÑÑ Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1714,6 +1795,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2065,6 +2148,821 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr "ÐПÑÑ â Ñзел Tor, кПÑПÑПгП ÐœÐµÑ Ð² ПÑкÑÑÑПЌ ÑпОÑке ÑзлПв."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"ÐПÑÑÑ ÐœÑÐ¶ÐœÑ Ð¿ÐŸÐ»ÑзПваÑелÑÐŒ Tor в ÑÑÑаМаÑ
Ñ ÑепÑеÑÑОвМÑЌО ÑежОЌаЌО О пÑПÑÑП "
+"ÑеЌ, кÑП Ñ
ПÑÐµÑ ÐŽÐŸÐ¿ÐŸÐ»ÐœÐžÑелÑМÑй ÑÑÐŸÐ²ÐµÐœÑ Ð±ÐµÐ·ÐŸÐ¿Ð°ÑМПÑÑО. ÐПÑÑ Ð¿ÐŸÐŒÐŸÐ³Ð°ÐµÑ, еÑлО "
+"ÑелПвек ПпаÑаеÑÑÑ, ÑÑП ÐŽÑÑгОе ÑзМаÑÑ ÐŸÐ± ОÑпПлÑзПваМОО ОЌ пÑблОÑМПгП IP-"
+"аЎÑеÑа Ñзла Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"ÐÑ ÑекПЌеМЎÑеЌ пÑОлПжеМОе ÐŽÐ»Ñ iOS пПЎ МазваМОеЌ Onion Browser. ÐМП ÐžÐŒÐµÐµÑ "
+"ПÑкÑÑÑÑй ОÑÑ
ПЎМÑй кПЎ, ОÑпПлÑзÑÐµÑ ÐŒÐ°ÑÑÑÑÑОзаÑÐžÑ Tor О ÑазÑабПÑаМП ÑелПвекПЌ,"
+" кПÑПÑÑй ÑеÑМП ÑПÑÑÑЎМОÑÐ°ÐµÑ Ñ Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"ТеЌ Ме ЌеМее, Apple ÑÑебÑеÑ, ÑÑÐŸÐ±Ñ Ð±ÑаÑзеÑÑ ÐœÐ° iOS ОÑпПлÑзПвалО Ð¿Ð°ÐºÐµÑ "
+"Webkit. ÐÑÐŸÑ Ð²Ð°ÑÐžÐ°ÐœÑ ÐœÐµ пПзвПлÑÐµÑ Onion Browser ПбеÑпеÑОваÑÑ ÑакПй же "
+"вÑÑПкОй ÑÑÐŸÐ²ÐµÐœÑ Ð·Ð°ÑОÑÑ Ð¿ÑОваÑМПÑÑО, как Tor Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"ÐПЎÑПбМее П пÑОлПжеМОО Onion Browser ЌПжМП ÑзМаÑÑ "
+"[зЎеÑÑ](https://blog.torproject.org/tor-heart-onion-browser-and-more-io…"
+"tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"СкаÑаÑÑ Onion Browser ЌПжМП в [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "Tor Ме ÑабПÑÐ°ÐµÑ ÐœÐ° Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2184,13 +3082,13 @@ msgstr "ÐÐÐÐРТÐÐÐÐТЬ"
msgid "Give today, and Mozilla will match your donation."
msgstr "ÐПжеÑÑвÑйÑе ÑÐµÐ³ÐŸÐŽÐœÑ Ðž Mozilla ÑÐŽÐ²ÐŸÐžÑ Ð²Ð°Ñе пПжеÑÑвПваМОе."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "СкаÑаÑÑ Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2198,11 +3096,11 @@ msgstr ""
"СкаÑайÑе Tor Browser О ПÑеМОÑе МаÑÑПÑÑОй пÑОваÑМÑй ОМÑеÑÐœÐµÑ Ð±ÐµÐ· ÑлежкО О "
"ÑеМзÑÑÑ."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "ÐаÑа ЌОÑÑОÑ:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2214,33 +3112,33 @@ msgstr ""
"пПЎЎеÑжка ОÑ
МеПгÑаМОÑеММПй ЎПÑÑÑпМПÑÑО О ОÑпПлÑзПваМОÑ, а Ñакже ÑПЎейÑÑвОе "
"ОÑ
МаÑÑÐœÐŸÐŒÑ Ðž ПбÑеÑÑÐ²ÐµÐœÐœÐŸÐŒÑ Ð¿ÐŸÐœÐžÐŒÐ°ÐœÐžÑ. "
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ÐПжеÑÑвÑйÑе"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ÐПжеÑÑвПваÑÑ"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "ÐПЎпОÑÑвайÑеÑÑ ÐœÐ° МаÑÑ ÐœÐŸÐ²ÐŸÑÑМÑÑ ÑаÑÑÑлкÑ"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ÐПлÑÑайÑе ежеЌеÑÑÑМÑе МПвПÑÑО ÐŸÑ Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "ÐПЎпОÑаÑÑÑÑ"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+sr.po b/contents+sr.po
index 5681b1d211..0d1e2175b5 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Aleksa RistiÄ, 2020\n"
"Language-Team: Serbian (https://www.transifex.com/otf/teams/1519/sr/)\n"
@@ -78,8 +78,8 @@ msgstr "Preuzimanje"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Pokretanje Tor pregledaÄa po prvi put"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Mostovi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Upravljanje identitetom"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,12 +145,19 @@ msgstr "Poznati problemi"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Postani Tor prevodioc"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -540,6 +547,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -555,7 +564,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -572,42 +581,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -695,9 +740,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -735,25 +780,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -772,21 +844,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -871,33 +943,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -924,17 +1008,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1416,6 +1505,8 @@ msgstr "Kako aÅŸurirati Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1566,6 +1657,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1878,6 +1971,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -1997,23 +2890,23 @@ msgstr "DONIRAJ SADA"
msgid "Give today, and Mozilla will match your donation."
msgstr ""
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Preuzmi Tor pregledaÄ"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Naša misija:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2021,33 +2914,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ÐПМОÑаÑ"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Doniraj odmah"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr ""
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+sv-SE.po b/contents+sv-SE.po
index 45d84c32ca..aa1a1d5650 100644
--- a/contents+sv-SE.po
+++ b/contents+sv-SE.po
@@ -1,15 +1,15 @@
# Translators:
# erinm, 2019
# Henrik Mattsson-MÃ¥rn <h(a)reglage.net>, 2019
-# Jonatan Nyberg, 2020
+# Jonatan, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Jonatan Nyberg, 2020\n"
+"Last-Translator: Jonatan, 2020\n"
"Language-Team: Swedish (https://www.transifex.com/otf/teams/1519/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,8 +78,8 @@ msgstr "HÀmtar"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "AnvÀnda Tor Browser för första gången"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -98,8 +98,8 @@ msgstr "Broar"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Hantera identiteter"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -145,13 +145,20 @@ msgstr "KÀnda problem"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Bli en Tor-översÀttare"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Göra Tor Browser bÀrbar"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -569,6 +576,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -587,12 +596,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Om du Àr på en relativt snabb anslutning, men den hÀr fÀltet verkar fastna "
-"vid en viss punkt, se sidan [Felsökning](/troubleshooting) för hjÀlp med att"
-" lösa problemet."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -607,50 +613,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Om du vet att din anslutning Àr censurerad eller anvÀnder en proxy, bör du "
-"vÀlja det hÀr alternativet. Tor Browser tar dig igenom en rad "
-"konfigurationsalternativ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"NÀsta skÀrm frågar om din anslutning anvÀnder en proxy. I de flesta fall Àr "
-"det inte nödvÀndigt. Du vet vanligen om du behöver svara \"Ja\", eftersom "
-"samma instÀllningar kommer att anvÀndas för andra webblÀsare på ditt system."
-" Om möjligt, fråga din nÀtverksadministratör för vÀgledning. Om din "
-"anslutning inte anvÀnder en proxy, klicka på \"FortsÀtt\"."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -744,9 +778,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -786,28 +820,53 @@ msgstr "### ANVÃNDA PLUGGBARA TRANSPORTER"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"NÀr du har valt den pluggbara transporten som du vill anvÀnda, klicka på "
-"\"Anslut\" för att spara dina instÀllningar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -828,24 +887,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"LÀs avsnittet [Broar](/en-US/bridges/) för att lÀra dig vilka broar Àr och "
-"hur man får dem."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -942,42 +999,46 @@ msgstr "### ANVÃNDA MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Om du startar Tor Browser för första gången klickar du på \"Konfigurera\" "
-"för att öppna fönstret Tor-nÀtverksinstÀllningar."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Annars klickar du på \"InstÀllningar\" i hamburgermenyn (huvudmenyn) och "
-"sedan på \"Tor\" i sidofÀltet."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"I fönstret Tor-nÀtverksinstÀllningar vÀljer du \"Tor censureras i mitt "
-"land.\""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"VÀlj sedan \"BegÀr en bro från torproject.org\" och klicka på \"BegÀr en "
-"bro...\""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Fyll i CAPTCHA och klicka på \"Skicka\"."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1003,17 +1064,22 @@ msgstr "NÀr du har fått några broadresser, måste du ange dem i Tor Launcher.
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1575,6 +1641,8 @@ msgstr "Hur du uppdaterar Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1744,6 +1812,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### KÃNDA PROBLEM"
@@ -2089,6 +2159,808 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Det finns för nÀrvarande ingen metod som stöds för att köra Tor på Windows "
+"Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2208,23 +3080,23 @@ msgstr "DONERA NU"
msgid "Give today, and Mozilla will match your donation."
msgstr "Ge idag, och Mozilla kommer att matcha din donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "HÀmta Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2232,33 +3104,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donera"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donera nu"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Prenumerera på vårt nyhetsbrev"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Registrera"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+th.po b/contents+th.po
index 52feb8afbb..77e8bd9cd2 100644
--- a/contents+th.po
+++ b/contents+th.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: Darika Bamrungchok <darika(a)engagemedia.org>, 2020\n"
"Language-Team: Thai (https://www.transifex.com/otf/teams/1519/th/)\n"
@@ -88,8 +88,8 @@ msgstr "àžàž³àž¥àž±àžàžàž²àž§àžà¹à¹àž«àž¥àž"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "à¹àžà¹àžàž²àž Tor Browser à¹àžà¹àžàžàž£àž±à¹àžà¹àž£àž"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -108,8 +108,8 @@ msgstr "àžªàž°àžàž²àž"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "àžàž²àž£àžàž±àžàžàž²àž£àžàž±àž§àžàž"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -155,13 +155,20 @@ msgstr "àžàž±àžàž«àž²àžàžµà¹àžàž£àž²àž"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "àž¡àž²à¹àžà¹àžàžàž±àžà¹àžàž¥ Tor"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "àžàž³à¹àž«à¹ Tor Browser à¹àžà¹àžàž²àžà¹àžà¹àžàžà¹àžàž£àž·à¹àžàžàžà¹àž²àžà¹"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -552,6 +559,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -567,7 +576,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -584,56 +593,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"àž«àž²àžàžàžžàžàž£àž¹à¹àž§à¹àž²àžàž²àž£à¹àžàž·à¹àžàž¡àžà¹àžàžàžàžàžàžžàžàžàž¹àžà¹àžà¹àžà¹àžàžàž£à¹àž«àž£àž·àžà¹àžà¹àžàž£àžàžàžàžµàžàžžàžàžàž§àž£à¹àž¥àž·àžàžàžàž±àž§à¹àž¥àž·àžàžàžàžµà¹"
-" TORà¹àžàž£àž²àž§à¹à¹àžàžàž£à¹àžàž°àžàž³àžàžžàžàžà¹àž²àžàžàžžàžàžàž±àž§à¹àž¥àž·àžàžàžàž²àž£àžàž³àž«àžàžàžà¹àž²"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"àž«àžà¹àž²àžàžà¹àž£àžàžàž°àžàž²àž¡àž§à¹àž²àžàž²àž£à¹àžà¹àž²àžàž¶àžà¹àžàž£àž·àžàžà¹àž²àž¢ Tor "
-"àžàž±à¹àžàžàž¹àžàžàž¥à¹àžàžàž«àž£àž·àžàžàž¹àžà¹àžà¹àžà¹àžàžàž£à¹à¹àžàžàž²àž£à¹àžàž·à¹àžàž¡àžà¹àžàžàžàžàžàžžàžàž«àž£àž·àžà¹àž¡à¹ "
-"àž«àž²àžàžàžžàžà¹àž¡à¹à¹àžàž·à¹àžàž§à¹àž²à¹àžà¹àžàžàž£àžàžµàžàžµà¹à¹àž«à¹à¹àž¥àž·àžàžâ à¹àž¡à¹â "
-"àž«àž²àžàžàžžàžàž£àž¹à¹àž§à¹àž²àžàž²àž£à¹àžàž·à¹àžàž¡àžà¹àžàžàžàžàžàžžàžàžàž¹àžà¹àžà¹àžà¹àžàžàž£à¹àž«àž£àž·àžàžàžžàžà¹àžà¹àž¥àžàžà¹àž¥àž°à¹àž¡à¹àžªàž²àž¡àž²àž£àžà¹àžàž·à¹àžàž¡àžà¹àžàžàž±àžà¹àžàž£àž·àžàžà¹àž²àž¢"
-" Tor à¹àž¥àž°à¹àž¡à¹àž¡àžµàž§àžŽàžàžµà¹àžà¹à¹àžàžàž±àžàž«àž²àžàž·à¹àžà¹àž«à¹à¹àž¥àž·àžàžâ à¹àžà¹â àžàž²àžàžàž±à¹àžàžàžžàžàžàž°àžàž¹àžàžàž³à¹àžàžàžµà¹àž«àžà¹àž²àžàž "
-"<a href=\"/circumvention\">àžàž²àž£àž«àž¥àžµàžà¹àž¥àžµà¹àž¢àž </a> "
-"à¹àžàž·à¹àžàžàž³àž«àžàžàžà¹àž²àžàž²àž£àžàžàžªà¹àžàžàžµà¹à¹àžªàžµàž¢àžà¹àžà¹"
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"àž«àžà¹àž²àžàžàžàž±àžà¹àžàžàž°àžàž²àž¡àž§à¹àž²àžàž²àž£à¹àžàž·à¹àžàž¡àžà¹àžàžàžàžàžàžžàžà¹àžà¹àžàž£àžàžàžàžµàž«àž£àž·àžà¹àž¡à¹ "
-"à¹àžàžàž£àžàžµàžªà¹àž§àžà¹àž«àžà¹àžªàžŽà¹àžàžàžµà¹à¹àž¡à¹àžàž³à¹àžà¹àž à¹àžàž¢àžàžàžàžŽà¹àž¥à¹àž§àžàžžàžàžàž°àž£àž¹à¹àž§à¹àž²àžàž³à¹àžà¹àžàžà¹àžàžàžàžàžâ à¹àžà¹â "
-"à¹àžàž£àž²àž°àžàž°à¹àžà¹àžàž²àž£àžàž±à¹àžàžà¹àž²à¹àžàžµàž¢àž§àžàž±àžàžàž±àžà¹àžàž£àž²àž§à¹à¹àžàžàž£à¹àžàž·à¹àžà¹àžàž£àž°àžàžàžàžàžàžàžžàž "
-"àž«àž²àžà¹àžà¹àžà¹àžà¹àžà¹àžàžàžàž³à¹àžàž°àžàž³àžàž²àžàžàž¹à¹àžàž¹à¹àž¥àž£àž°àžàžà¹àžàž£àž·àžàžà¹àž²àž¢àžàžàžàžàžžàž "
-"àž«àž²àžàžàž²àž£à¹àžàž·à¹àžàž¡àžà¹àžàžàžàžàžàžžàžà¹àž¡à¹à¹àžà¹à¹àžà¹àžàž£à¹àžàžàžàžµà¹àž«à¹àžàž¥àžŽàžâ àžàž³à¹àžàžŽàžàžàž²àž£àžà¹àžâ"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -721,9 +752,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -763,28 +794,52 @@ msgstr "### à¹àžà¹àžàž²àžàžàž±àž§àžªà¹àžàžàž£àž²àžàžà¹àžàž¡àž¹àž¥"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"à¹àžàž·à¹àžàžàžµà¹àžàž°à¹àžà¹àžàž²àžàžàž±àž§àžªà¹àžàžàž£àž²àžàžà¹àžàž¡àž¹àž¥ à¹àž«à¹àžàž¥àžŽàž 'àžàž±à¹àžàžà¹àž²' à¹àž¡àž·à¹àžà¹àž£àžŽà¹àž¡àžà¹àž Tor Browser"
-" à¹àžàžàž£àž±à¹àžà¹àž£àž à¹àžàž«àžà¹àž²àžà¹àž²àžàžàžµà¹àžàž£àž²àžàž àžàž²àžà¹àž¡àžàž¹àž£àž²àž¢àžàž²àž£àžàž£àžàžàžàž²àž§àžà¹ "
-"à¹àž¥àž·àžàžàžàž±àž§àžªà¹àžàžàž£àž²àžàžà¹àžàž¡àž¹àž¥à¹àžàžà¹à¹àžà¹àžàžµà¹àžàžžàžàžàž¢àž²àžà¹àžà¹"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -803,21 +858,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -904,33 +959,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -957,17 +1024,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1537,6 +1609,8 @@ msgstr "àžàž±àžà¹àžàž Tor Browser àžàž¢à¹àž²àžà¹àž£"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1711,6 +1785,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2058,6 +2134,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2177,13 +3053,13 @@ msgstr "àžàž£àžŽàžàž²àžàžàžàžàžàžµà¹"
msgid "Give today, and Mozilla will match your donation."
msgstr "àžàž£àžŽàžàž²àžàž§àž±àžàžàžµà¹à¹àž¥àž°àž¡àžàžàžŽàž¥àž¥àž²àžàž°àžªàž¡àžàžà¹àžà¹àž²àžàž±àžàžàžµà¹àžàžžàžà¹àž«à¹"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "àžàž²àž§àžà¹à¹àž«àž¥àž Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2192,11 +3068,11 @@ msgstr ""
"à¹àžàž·à¹àžàžàž£àž°àžªàžàžàž²àž£àžà¹àžàž²àž£àžà¹àžàžà¹àž§à¹àžàžà¹àž§àž¢àžàž§àž²àž¡à¹àžà¹àžàžªà¹àž§àžàžàž±àž§àžàž¢à¹àž²àžà¹àžà¹àžàž£àžŽàž "
"àžàž£àž²àžšàžàž²àžàžàž²àž£àžàžŽàžàžàž²àž¡à¹àžàž°àž£àžàž¢ àžàž¹àžàžªàžàžàžªà¹àžàž àž«àž£àž·àžàžàž²àž£àžàž¹àžàžàžŽàžàžàž±à¹àž"
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "àž àž²àž£àžàžŽàžàžàžàžà¹àž£àž²"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2208,33 +3084,33 @@ msgstr ""
" àžªàžàž±àžàžªàžàžžàžà¹àž¥àž°àžàž¥àžàžàž¥à¹àžàž¢àžàžµàžàžàž³àžàž±àžà¹àžàžàž²àž£à¹àžà¹àžàž²àž "
"àžªà¹àžà¹àžªàž£àžŽàž¡àžàž§àž²àž¡à¹àžà¹àž²à¹àžàžà¹àž²àžàž§àžŽàžàž¢àž²àžšàž²àžªàžàž£à¹à¹àž¥àž°àžà¹àž²àžàžŽàž¢àž¡àžàžàžàžàž§àžà¹àžàž²"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "àžàž£àžŽàžàž²àž"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "àžàž£àžŽàžàž²àžàžàžàžàžàžµà¹"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "àž£àž±àžàžàž²àž£àžàž±àžà¹àžàžàž£àž²àž¢à¹àžàž·àžàžà¹àž¥àž°à¹àžàžàž²àžªàžàž²àžà¹àžàž£àžàžàž²àž£àžàžàž Tor"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "àž¥àžàžàž°à¹àžàžµàž¢àž"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+tr.po b/contents+tr.po
index 2977b3e9c7..ea1488c25a 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -3,18 +3,18 @@
# Cenk Yıldızlı <goncagul(a)national.shitposting.agency>, 2019
# ilkeryus <ilkeryus(a)gmail.com>, 2019
# Volkan Gezer <volkangezer(a)gmail.com>, 2019
-# erinm, 2019
# dersteppenwolfx, 2019
# Emma Peel, 2020
# Kaya Zeren <kayazeren(a)gmail.com>, 2020
+# erinm, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2020\n"
+"Last-Translator: erinm, 2020\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -83,8 +83,8 @@ msgstr "İndirme"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Tor Browser uygulamasını ilk kez çalıÅtırma"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -103,8 +103,8 @@ msgstr "KöprÌler"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Kimlik yönetimi"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -150,13 +150,20 @@ msgstr "Bilinen sorunlar"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Tor Ãevirisine Katkıda Bulunabilirsiniz"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Tor Browser Uygulamasını TaÅınabilir Yapmak"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -575,6 +582,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -594,12 +603,9 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
-"Hızlı bir baÄlantınız olduÄu halde çubuk bir noktada takılıp kalıyorsa, "
-"yapabileceklerinizi görmek için [Sorun Ãözme](/tr/troubleshooting) sayfasına"
-" bakabilirsiniz."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -614,58 +620,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"BaÄlantınızın sansÃŒrlendiÄini ya da vekil sunucu kullandıÄını biliyorsanız, "
-"bu seçeneÄi seçmelisiniz. Tor Browser size bir dizi yapılandırma seçeneÄi "
-"sunar."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
-msgstr ""
-"İlk bölÃŒmde, baÄlantınız ÃŒzerinden Tor aÄına eriÅimin engellenmesi ya da "
-"sansÃŒrlenmesi ile ilgili bilgi alınır. Durumun böyle olmadıÄını "
-"dÃŒÅÃŒnÃŒyorsanız, \"Hayır\" ÃŒzerine tıklayın. BaÄlantınızın sansÃŒrlendiÄini "
-"biliyorsanız ya da Tor aÄına baÄlanmayı deneyip baÄlanamadıysanız ve baÅka "
-"bir çözÃŒm iÅe yaramadıysa, \"Evet\" ÃŒzerine tıklayın. Böylece, bir "
-"DeÄiÅtirilebilir TaÅıyıcıyı yapılandırabileceÄiniz [Engelleri "
-"AÅma](/tr/circumvention) bölÃŒmÃŒne yönlendirilirsiniz."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Sonraki bölÃŒmde baÄlantınızın bir vekil sunucu kullanıp kullanmadıÄı "
-"hakkında bilgi alınır. ÃoÄu durumda, bu gerekli deÄildir. Sisteminizdeki "
-"diÄer tarayıcılar için de aynı ayarlar kullanıldıÄından \"Evet\" olarak "
-"seçmeniz gerekiyorsa genellikle bunu bilirsiniz. Olabiliyorsa, aÄ "
-"yöneticinizden yardım isteyin. BaÄlantınız bir vekil sunucu kullanmıyorsa, "
-"\"Devam\" Ìzerine tıklayın."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -762,13 +788,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek aktarımlarının tÌmÌ, Tor kullanıyor gibi görÌnmek yerine bÌyÌk bir web "
-"sitesinde geziliyormuÅ gibi görÃŒnmeyi saÄlar. meek-azure, bir Microsoft web "
-"sitesi kullanılıyormuÅ gibi görÃŒnmeyi saÄlar."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -808,35 +831,53 @@ msgstr "### DEÄİÅTİRİLEBİLİR TAÅIYICILARI KULLANMAK"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"DeÄiÅtirilebilir TaÅıyıcıları kullanmak için, Tor Browser uygulamasını ilk "
-"kez çalıÅtırdıÄınızda görÃŒntÃŒlenen penceredeki 'Yapılandır' ÃŒzerine tıklayın"
-" ve açılan kutudan kullanmak istediÄiniz deÄiÅtirilebilir taÅıyıcıyı seçin."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Ya da Tor Browser çalıÅıyorsa, hamburger menÃŒsÃŒnden 'Ayarlar' ÃŒzerine ve yan"
-" çubuktan 'Tor' Ìzerine tıklayın. 'KöprÌler' bölÌmÌnden, 'Bir köprÌ "
-"kullanılsın' seçeneÄini etkinleÅtirin ve 'Hazır köprÃŒlerden seçin' açılan "
-"kutusundan kullanmak istediÄiniz DeÄiÅtirilebilir TaÅıyıcıyı seçin."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
-"Kullanmak istediÄiniz DeÄiÅtirilebilir TaÅıyıcıyı seçtikten sonra "
-"ayarlarınızı kaydetmek için 'BaÄlan' ÃŒzerine tıklayın."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -857,28 +898,22 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
-"İlk kez engellenmiÅ bir baÄlantıyı aÅmaya çalıÅıyorsanız, obfs4, snowflake "
-"ya da meek-azure gibi farklı DeÄiÅtirilebilir TaÅıyıcıları denemelisiniz."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
-"Bu seçeneklerin tÃŒmÃŒnÃŒ denediÄiniz halde hiçbiri çevrimiçi olmanızı "
-"saÄlayamıyor ise, köprÃŒ adreslerini el ile yazmanız gerekir."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"KöprÃŒlerin ne olduÄunu ve köprÃŒ bilgilerini nasıl edinebileceÄinizi öÄrenmek"
-" için [KöprÌler](/tr/bridges/) bölÌmÌne bakabilirsiniz."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -977,42 +1012,46 @@ msgstr "### MOAT KULLANMAK"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"Tor Browser uygulamasını ilk kez çalıÅtırıyorsanız, Tor AÄ Ayarları "
-"penceresini açmak için 'Yapılandır' Ìzerine tıklayın."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Daha önce kullandıysanız, hamburger menÌsÌ (ana menÌ) içindeki 'Ayarlar' "
-"Ìzerine ve yan çubuktaki 'Tor' Ìzerine tıklayın."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"Tor AÄ Ayarları penceresinde, 'BulunduÄum ÃŒlkede Tor aÄı engelleniyor' "
-"seçeneÄini iÅaretleyin."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"'torproject.org ÃŒzerinden bir köprÃŒ isteÄinde bulun' ve 'KöprÃŒ İsteÄinde "
-"Bulun...' Ìzerine tıklayın"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "GÌvenlik kodunu tamamlayın ve 'Gönder' Ìzerine tıklayın."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1038,25 +1077,23 @@ msgstr "AldıÄınız köprÃŒ adreslerini Tor BaÅlatıcı içinde belirtmeniz g
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"Tor Browser uygulamasını ilk kez kullanıyorsanız, ekranın saÄ ÃŒst "
-"köÅesindeki \"Yapılandır\" tuÅuna basarak Tor Browser Ayarları penceresini "
-"açın. Daha önce kullandıysanız hamburger menÌsÌ (ana menÌ) içindeki "
-"'Ayarlar' Ìzerine ve yan çubuktaki 'Tor' Ìzerine tıklayın."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"'KöprÃŒler' bölÃŒmÃŒnde, 'Bir köprÃŒ kullanılsın' seçeneÄini iÅaretleyin ve "
-"'BildiÄim Bir KöprÃŒyÃŒ KullanacaÄım' seçeneÄini seçip körpÃŒleri her bir köprÃŒ"
-" adresi ayrı bir satırda olacak Åekilde yazın."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1691,6 +1728,8 @@ msgstr "Tor Browser nasıl gÌncellenir"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1880,6 +1919,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### BİLİNEN SORUNLAR"
@@ -2273,6 +2314,824 @@ msgstr ""
"* Ãzellikle BitTorrent [Tor ÃŒzerinde anonim "
"deÄildir](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"KöprÌ aktarıcıları, herkesin kullanımına açık olan ve Tor dizininde "
+"listelenmeyen Tor aktarıcılarıdır."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Baskıcı rejimler ile yönetilen yerlerde bulunan Tor kullanıcıları ve herkese"
+" açık olarak çalıÅan bir Tor aktarıcısının IP adresine baÄlandıklarının "
+"görÃŒlmesini istemeyen kiÅiler ek bir gÃŒvenlik katmanına sahip olmak için "
+"köprÌleri kullanabilir."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"Onion Browser adındaki iOS uygulamasını öneririz. Bu uygulama açık "
+"kaynaklıdır, Tor aktarımlarını kullanır ve Tor Projesi ile yakın çalıÅan bir"
+" kiÅi tarafından geliÅtirilmektedir."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"Bununla birlikte Apple, iOS Ìzerindeki web tarayıcılarının Webkit adında bir"
+" Åey kullanmasını zorunlu kılmaktadır. Bu durum Onion Browser uygulamasının "
+"Tor Browser ile aynı dÃŒzeyde kiÅisel gizlilik koruması saÄlamasını engeller."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Onion Browser hakkında ayrıntılı bilgiler](https://blog.torproject.org/tor-"
+"heart-onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Onion Browser uygulamasını [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448) ÃŒzerinden indirin."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"Maalesef, Åu anda Windows Phone ÃŒzerinde Tor çalıÅtırmak için desteklenen "
+"bir yöntem yok."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2413,13 +3272,13 @@ msgstr "BAÄIÅ YAPIN"
msgid "Give today, and Mozilla will match your donation."
msgstr "BugÃŒn yaptıÄınız her baÄıŠkadar Mozilla da baÄıŠyapacak."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Tor Browser İndir"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2428,11 +3287,11 @@ msgstr ""
"koruyabileceÄiniz gerçek taramayı deneyimlemek için Tor Browser uygulamasını"
" indirin."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Misyonumuz:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2444,34 +3303,34 @@ msgstr ""
"kısıtlamasız olarak eriÅilebilmesini saÄlamak ile bilimsel ve yaygın olarak "
"anlaÅılmasını saÄlamak."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "BaÄıŠYapın"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "BaÄıŠYapın"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Duyurularımıza Abone Olun"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
"Tor Projesi ile ilgili gÌncelleme ve bilgileri aylık olarak alabilirsiniz:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Kayıt olun"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+vi.po b/contents+vi.po
index 81c9596242..77b11cd2d5 100644
--- a/contents+vi.po
+++ b/contents+vi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
"Last-Translator: erinm, 2019\n"
"Language-Team: Vietnamese (https://www.transifex.com/otf/teams/1519/vi/)\n"
@@ -79,8 +79,8 @@ msgstr "Äang tải xuá»ng"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Chạy Trình duyá»t Tor lần Äầu tiên"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -99,8 +99,8 @@ msgstr "Cầu Ná»i"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Quản trá» các Äá»nh danh"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -146,12 +146,19 @@ msgstr "Các vấn Äá» Äã biết"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "ngưá»i dá»ch-những sá»± Äóng góp"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -531,6 +538,8 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -546,7 +555,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -563,44 +572,52 @@ msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
msgstr ""
-"Nếu bạn biết kết ná»i cá»§a bạn bá» kiá»m duyá»t, hay sá» dụng má»t Äại diá»n á»§y "
-"quyá»n proxy, bạn nên chá»n phương án nà y. Trình duyá»t Tor sẜ dẫn bạn qua má»t "
-"chuá»i những lá»±a chá»n cấu hình."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"Mà n ảnh tiếp theo há»i nếu kết ná»i cá»§a bạn sá» dụng má»t Äại diá»n á»§y quyá»n, "
-"proxy. Trong hầu hết các trưá»ng hợp, Äiá»u nà y là khÃŽng cần thiết. Bạn sẜ "
-"luÃŽn biết nếu bạn cần trả lá»i âCóâ, vì cùng những cà i Äặt Äó sẜ ÄÆ°á»£c dùng "
-"cho những trình duyá»t khác trong há» thá»ng cá»§a bạn. Nếu có thá», há»i quản trá» "
-"mạng lưá»i cá»§a bạn Äá» ÄÆ°á»£c hưá»ng dẫn. Nếu kết ná»i cá»§a bạn khÃŽng dùng má»t Äại "
-"diá»n á»§y quyá»n, kÃch và o âTiếp tụcâ."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -608,6 +625,25 @@ msgstr ""
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr ""
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -695,9 +731,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -735,25 +771,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -772,21 +835,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -872,33 +935,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -925,17 +1000,22 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1489,6 +1569,8 @@ msgstr "Là m thế nà o Äá» cáºp nháºt Trình duyá»t Tor"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1664,6 +1746,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -2016,6 +2100,806 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2137,23 +3021,23 @@ msgstr ""
"Hãy Äóng góp ngay hÃŽm nay, và Mozilla sẜ Äóng góp tương ứng vá»i phần cá»§a "
"bạn."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr ""
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr ""
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr ""
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2161,33 +3045,33 @@ msgid ""
"understanding."
msgstr ""
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Quyên góp"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Äóng góp Ngay bây giá»"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr ""
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr ""
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr ""
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+zh-CN.po b/contents+zh-CN.po
index f37d63b17d..a96fe98112 100644
--- a/contents+zh-CN.po
+++ b/contents+zh-CN.po
@@ -1,21 +1,20 @@
# Translators:
-# ãšã€ãã®è³¢çŒãã, 2019
# MD Rights <psychi2009(a)gmail.com>, 2019
# erinm, 2019
# shenzhui007 <12231252(a)bjtu.edu.cn>, 2019
# YFdyh000 <yfdyh000(a)gmail.com>, 2019
-# khi, 2020
-# Cloud P <heige.pcloud(a)outlook.com>, 2020
# Emma Peel, 2020
+# ãšã€ãã®è³¢çŒãã, 2020
# ff98sha, 2020
+# Cloud P <heige.pcloud(a)outlook.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: ff98sha, 2020\n"
+"Last-Translator: Cloud P <heige.pcloud(a)outlook.com>, 2020\n"
"Language-Team: Chinese (China) (https://www.transifex.com/otf/teams/1519/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +83,8 @@ msgstr "äžèœœ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "忬¡è¿è¡ Tor æµè§åš"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +103,8 @@ msgstr "çœæ¡¥"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "管ç身仜"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,13 +150,20 @@ msgstr "å·²ç¥é®é¢"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "æäžº Tor ç¿»è¯è
"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "å¯ç§»æ€ Tor æµè§åš"
+msgid "Making Tor Browser Portable"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -525,6 +531,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -540,9 +548,9 @@ msgstr "äžåœç¹å»ïŒäžäžªç¶ææ äŒæŸç€ºïŒå±ç€º Tor çè¿æ¥ç¶æã"
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
-msgstr "åŠææšçè¿æ¥é床çžå¯¹èŸå¿«ïŒäœè¯¥ç¶ææ 䌌ä¹åšæäžªæ¶åå¡äœäºïŒè¯·åé
[æ
éæé€](/troubleshooting)页é¢ä»¥åž®å©è§£å³é®é¢ã"
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
@@ -557,46 +565,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr "åŠææšäœ¿çšççœç»æè¢«è¿æ»€é»æ¡ïŒææ¯æšæäœ¿çšä»£çæå¡åšïŒé£æšå°±å¿
é¡»èŠéæ©æ€é¡¹ç®ïŒTor æµè§åšå°äŒåŒå¯Œæšè¿è¡äžè¿äž²ççžå
³è®Ÿçœ®è¿çšã"
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
-"第äžäžªé¡µé¢è¯¢é® Tor çœç»åšåœåç¯å¢éæ¯åŠè¢«å°éæå®¡æ¥ãåŠæäœ è§åŸå¹¶æ²¡æè¿æ ·ïŒéæ©âäžæ¯âãåŠæäœ ç¥éäœ ç Tor "
-"è¿æ¥æ¯äŒè¢«å®¡æ¥çïŒæè
äœ å·²ç»å°è¯çŽè¿ Tor å¹¶äžå€±èŽ¥äºäžå
¶ä»åæ³éœäžç®¡çšïŒé£ä¹éæ©âæ¯âãæ¥äžæ¥å°èœ¬å
¥[ç»è¿å®¡æ¥](/zh-"
-"CN/circumvention)页é¢ä»¥é
眮äžäžªå¯ææäŒ èŸã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"åšäžäžäžªç»é¢äžïŒæšå¿
é¡»èŠåçæšççœç»è¿æ¥æ¯åŠæéè¿ä»£çæå¡åšæ¥è¿äžçœç»ïŒéåžžæšåºè¯¥åŸæž
æ¥èªå·±æ¯åŠæäœ¿çšä»£çæå¡åšïŒå 䞺è¿éšåçè®Ÿçœ®åšæšçµèäžçæ¯äžªçœç»æµè§åšééœäŒäžæ ·ãè¥æšäžç¡®å®çè¯ïŒå¯ä»¥è¯¢é®æšççœç»ç®¡çåïŒè¥æšç¡®å®æ 䜿çšä»£çæå¡åšçè¯ïŒè¯·ç¹å»âç»§ç»âã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -686,10 +726,10 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
-msgstr "meek æ¹åŒäœ¿æšçèµ·æ¥ååšæµè§äž»èŠçœç«ïŒèäžæ¯äœ¿çš Torã meek-azure 䜿æšçèµ·æ¥ååšäœ¿çš Microsoft çœç«ã"
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -728,28 +768,53 @@ msgstr "### 䜿çšå¯ææäŒ èŸ"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
-msgstr "èŠäœ¿çšå¯ææäŒ èŸïŒè¯·åšéŠæ¬¡å¯åš Tor æµè§åšæ¶åå»âé
眮âã åšåºç°ççªå£äžïŒä»äžæèåäžéæ©æšèŠäœ¿çšçä»»äœå¯ææäŒ èŸåšã"
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"æè
ïŒåŠææšæ£åšè¿è¡ Tor æµè§åšïŒè¯·åšæ±å ¡èåäžåå»âéŠé项âïŒç¶ååšäŸ§æ äžåå»âTorâã "
-"åšâçœæ¡¥âéšåäžïŒéäžâ䜿çšçœæ¡¥âïŒç¶åä»äžæèåâéæ©å
çœ®çœæ¡¥âäžéæ©æšèŠäœ¿çšç坿æäŒ èŸå·¥å
·ã"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
-msgstr "éæ©äºèŠäœ¿çšç坿æäŒ èŸåšåïŒç¹å»âè¿æ¥â以ä¿åæšç讟眮ã"
+"From the dropdown, select whichever pluggable transport you'd like to use."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -767,22 +832,22 @@ msgstr "Tor å¯åšåšçèåäžååºçæ¯ç§äŒ èŸæ¹åŒéœä»¥äžåçæ¹
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
-msgstr "åŠæäœ æ¯å°è¯ç¬¬äžæ¬¡ç»è¿äžäžªè¢«é»æçè¿æ¥ïŒäœ åºè¯¥å°è¯äžäžè¿äºäžåçäŒ èŸïŒobfs4ãsnowflakeïŒå meek-azureã"
+" should try the different transports: obfs4, snowflake, or meek-azure."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
-msgstr "åŠæäœ å°è¯äºææçé项éœäžèœè®©äœ è¿æ¥äžå»ïŒé£äœ éèŠæåšèŸå
¥çœæ¡¥å°åã"
+"need to request a bridge or manually enter bridge addresses."
+msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
-msgstr "请é
读[çœæ¡¥](/zh-CN/bridges)éšåïŒåŠä¹ 讀è¯çœæ¡¥ååŠäœè·åå®ä»¬ã"
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -863,34 +928,46 @@ msgstr "### 䜿çšMOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
-msgstr "åœæšéŠæ¬¡å¯åš Tor æµè§åšæ¶ïŒç¹å»âé
çœ®âæ¥æåŒæŽè±è·¯ç±çœç»ç讟眮çªå£ã"
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
-msgstr "åŠåïŒè¯·åšèåäžåå»âéŠé项âïŒç¶ååšäŸ§æ äžåå»âTorâã"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
-msgstr "åšæŽè±çœç»è®Ÿçœ®çªå£äžïŒéæ©âTor åšæçåœå®¶è®¿é®åéâã"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
-msgstr "ç¶åéæ©âä» torproject.org ç³è¯·äžäžªçœæ¡¥âå¹¶ç¹å»âç³è¯·çœæ¡¥...â"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "宿éªè¯ç å¹¶ç¹å»âæäº€âã"
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -916,20 +993,23 @@ msgstr "åšæšè·åŸäžäºçœæ¡¥å°ååïŒæšéèŠå°å®ä»¬èŸå
¥å° Tor å¯
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
-"åŠææšæ¯ç¬¬äžæ¬¡å¯åš Tor æµè§åšïŒè¯·åå»âé
眮â以æåŒ Tor çœç»è®Ÿçœ®çªå£ã "
-"åŠåïŒè¯·åšäž»èåäžåå»âéŠé项âïŒç¶ååšäŸ§æ äžåå»âTorâ以访é®è¿äºé项ã"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
-msgstr "åšâçœæ¡¥âéšåäžïŒéäžâ䜿çšçœæ¡¥âïŒç¶åéæ©âæäŸæç¥éççœæ¡¥âïŒç¶ååšåç¬çè¡äžèŸå
¥æ¯äžªçœæ¡¥å°åã"
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
+msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1452,6 +1532,8 @@ msgstr "åŠäœæŽæ° Tor æµè§åš"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1607,6 +1689,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### å·²ç¥é®é¢"
@@ -1947,6 +2031,812 @@ msgstr ""
"* ç¹å«å°ïŒBitTorrent [åš Tor äžæ¯æ æ³å¿åç](https://blog.torproject.org/bittorrent-"
"over-tor-isnt-good-idea)ã"
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr "çœæ¡¥æ¯äžåš Tor å
Œ
±ç®åœéååºçäžç»§èç¹ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr "åŠæäœ å€äºæäžªåè¿«æ¿æäžïŒææ¯æ
å¿è¢«åç°èªå·±æ£åšå Tor äžç»§ç IP å°åè¿æ¥ïŒäœ å¯èœéèŠäœ¿çšçœæ¡¥ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"åš iOS äžæä»¬æšè Onion BrowserïŒå®æ¯åŒæŸæºä»£ç 蜯件ïŒäœ¿çš Tor 线路ïŒèäžç±å Tor Project å
³ç³»å¯åç人åŒåã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"äœæ¯ïŒè¹æèŠæ±ææåš iOS è¿è¡çæµè§åšäœ¿çš Webkit ïŒè¿äŒäœ¿ Onion Browser äžèœæäŸå Tor æµè§åšçžåçéç§ä¿æ€ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[äºè§£æŽå€æå
³Onion Browser](https://blog.torproject.org/tor-heart-onion-browser-"
+"and-more-ios-tor)ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"åš[App Store]äžäžèœœOnion Browserã(https://itunes.apple.com/us/app/onion-"
+"browser/id519296448)ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "ç®å没æåš Windows Phone äžè¿è¡ Tor çæ¹æ³ã"
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2067,23 +2957,23 @@ msgstr "ç«å³æå©"
msgid "Give today, and Mozilla will match your donation."
msgstr "ç°å𿿬ŸïŒ Mozilla äŒå¹é
äœ çæèµ ã"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "äžèœœToræµè§åš"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr "äžèœœ Tor æµè§åšïŒäœéªçæ£çç§å¯æµè§ïŒäžè¢«è¿œèžªãçè§æå®¡æ¥ã"
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "æä»¬çä»»å¡:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2092,33 +2982,33 @@ msgid ""
msgstr ""
"éè¿åŒååéšçœ²èªç±ååŒæºçå¿ååéç§ææ¯ïŒæ¥æ¯æäººä»¬äžåéå¶å°äœ¿çšçœç»ïŒä»¥åæé«ä»ä»¬å¯¹ç§åŠåæ®äžä»·åŒç讀ç¥ïŒå¹¶å¢è¿ä»ä»¬å¯¹ç§åŠåæ¥åžžç¥è¯ççè§£ã"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "ææ¬Ÿ"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ç«å³æå©"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "订é
æä»¬çæ°é»"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "è·å Tor Project æ¯æååžçæŽæ°åæºéïŒ"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "订é
"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index f7f101c505..592ed9d22c 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -6,16 +6,16 @@
# ian chou <ertiach(a)hotmail.com>, 2019
# Joshua Chang <j.cs.chang(a)gmail.com>, 2019
# Bryce Tsao <tsaodingtw(a)gmail.com>, 2020
-# æé è <tukishimaaoba(a)gmail.com>, 2020
# Emma Peel, 2020
+# æé è <tukishimaaoba(a)gmail.com>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Emma Peel, 2020\n"
+"Last-Translator: æé è <tukishimaaoba(a)gmail.com>, 2020\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/otf/teams/1519/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -84,8 +84,8 @@ msgstr "äžèŒäž"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "éŠæ¬¡å·è¡Torç芜åš"
+msgid "Running Tor Browser for the First Time"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -104,8 +104,8 @@ msgstr "æ©æ¥"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "身å管ç"
+msgid "Managing Identities"
+msgstr ""
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -151,12 +151,19 @@ msgstr "å·²ç¥çåé¡"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "æçº Tor ç¿»è¯å€¥äŒŽ"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
msgstr ""
#: https//tb-manual.torproject.org/menu/
@@ -513,6 +520,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -528,7 +537,7 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
@@ -545,44 +554,78 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
-msgstr "åŠææšç¥éæšç網路é£ç·æè¢«å¯©æ¥ïŒææ¯äœ¿çšä»£ç䌺æåšïŒé£æšå°±å¿
é éžæéåéžé
ïŒTorç芜åšå°æåŒå°æšé²è¡äžé£äž²ççžéèšå®ã"
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"åšäžäžåç«é¢äžïŒæšå¿
é èŠåçæšæ¯åŠæéé代ç䌺æåšäŸé£äžç¶²è·¯ã倧éšåçæ
æ³äžïŒæ¯äžéèŠä»£ç䌺æåšçã\n"
-"åŠææ, éåžžæšæç¥éïŒå çºå暣çèšå®æå¥çšåšæšé»è
Šäžå
¶ä»æ¯åç芜åšäžãåŠæå¯èœç話ïŒå°æ±æšç網路管çå¡çæåŒé²è¡èšå®ïŒè¥æšæ²æéé代ç䌺æåšé²è¡é£ç·ïŒè«é»éžã繌çºãã"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=« col-md-6 » src=« ../../static/images/proxy.png »>"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr ""
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -670,9 +713,9 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -711,25 +754,52 @@ msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
@@ -748,21 +818,21 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -844,33 +914,45 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -895,17 +977,22 @@ msgstr "åšæšååŸæ©æ¥äœååŸïŒééèŠå°å®èŒžå
¥Toråååšã"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
#: https//tb-manual.torproject.org/bridges/
@@ -1409,6 +1496,8 @@ msgstr "åŠäœæŽæ°æŽè¥è·¯ç±ç芜åš"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1561,6 +1650,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr ""
@@ -1886,6 +1977,809 @@ msgid ""
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
msgstr ""
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr "æ©æ¥äžç¹Œæ¯äžŠæªåšååšå
¬éçTorç®éäžçToräžç¹Œã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"æ©æ¥äžç¹Œæ¥å°æŒèåšåéå¶å°åçTor䜿çšè
ïŒä»¥ååžæç²åŸé¡å€å®å
šæ§ç人åäŸèªªéåžžæçšïŒå çºä»åæå¿æäººæèŸšèåºä»åæ£é£åäžåå
¬éçToräžç¹ŒçIPäœåã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"æå建è°äœ¿çšäžååçºOnion BrowserçiOSæçšçšåŒïŒéæ¯äžåéæºæçšçšåŒïŒäœ¿çšæŽè¥è·¯ç±ïŒæ¯ç±äžäœèTor å°æ¡å¯ååäœç倥䌎éçŒçã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"äžéïŒAppleèŠæ±iOSäžçç芜åšå¿
é 䜿çšWebkitïŒéæåŠšç€Onion Browserå
·æèTor BrowserçžåççŽçé±ç§ä¿è·ã"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr "ç®åæ²ææ¯æŽåšWindows Phoneäžå·è¡Torçæ¹åŒã"
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2005,23 +2899,23 @@ msgstr "å³å»èŽå©"
msgid "Give today, and Mozilla will match your donation."
msgstr "仿¥æšææ¬ŸïŒMozilla 乿æåºçžåæžé¡ã"
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "äžèŒTorç芜åš"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
msgstr "äžèŒ Tor ç芜åšïŒé«é©çæ£æ²æè¿œè¹€ïŒç£èп坩æ¥ïŒå®å
šç§äººç網路ç芜ç¶é©ã"
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "æåçä»»åïŒ"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2029,33 +2923,33 @@ msgid ""
"understanding."
msgstr "ééåµå»ºåéšçœ²å
è²»äžŠéæºçå¿ååé±ç§æè¡ïŒæ¯æŽäœ¿çšè
äžåéå¶çè¿çšæ§å䜿çšïŒäžŠä¿é²äººååšç§åžèæ®éæ§ççè§£ïŒäŸä¿é²äººæ¬åèªç±ã"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "èŽå©"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "ç«å»ææ¬Ÿ"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "èšé±é»åå ±"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "ååŸTorå°æ¡çæ¯ææŽæ°èæ©æèšæ¯:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "èš»å"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
diff --git a/contents.pot b/contents.pot
index 638311cc09..b12a029b25 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: 2020-01-15 15:58+CET\n"
+"POT-Creation-Date: 2020-04-12 08:00+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"
@@ -73,8 +73,8 @@ msgstr "Downloading"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Running Tor Browser for the first time"
-msgstr "Running Tor Browser for the first time"
+msgid "Running Tor Browser for the First Time"
+msgstr "Running Tor Browser for the First Time"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -93,8 +93,8 @@ msgstr "Bridges"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Managing identities"
-msgstr "Managing identities"
+msgid "Managing Identities"
+msgstr "Managing Identities"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -140,13 +140,20 @@ msgstr "Known issues"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.title)
+msgid "Mobile Tor"
+msgstr "Mobile Tor"
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
msgid "Becoming a Tor Translator"
msgstr "Becoming a Tor Translator"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
-msgid "Making Tor Browser portable"
-msgstr "Making Tor Browser portable"
+msgid "Making Tor Browser Portable"
+msgstr "Making Tor Browser Portable"
#: https//tb-manual.torproject.org/menu/
#: (content/menu/contents+en.lrtopic.body)
@@ -560,6 +567,8 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/connect.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"In most cases, choosing \"Connect\" will allow you to connect to the Tor "
"network without any further configuration."
@@ -578,11 +587,11 @@ msgstr ""
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
msgstr ""
"If you are on a relatively fast connection, but this bar seems to get stuck "
-"at a certain point, see the [Troubleshooting](/troubleshooting) page for "
+"at a certain point, see the [Troubleshooting](../troubleshooting) page for "
"help solving the problem."
#: https//tb-manual.torproject.org/running-tor-browser/
@@ -598,56 +607,91 @@ msgstr "<img class=\"col-md-6\" src=\"../../static/images/configure.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
msgstr ""
-"If you know that your connection is censored, or uses a proxy, you should "
-"select this option. Tor Browser will take you through a series of "
-"configuration options."
+"If you know that your connection is censored or uses a proxy, you should "
+"select this option."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tor Browser will take you through a series of configuration options."
+msgstr "Tor Browser will take you through a series of configuration options."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
+msgstr "<img class=\"col-md-6\" src=\"../../static/images/pluggable-transport.png\">"
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
msgstr ""
-"The first screen asks if access to the Tor network is blocked or censored on"
-" your connection. If you do not believe this is the case, select âNoâ. If "
-"you know your connection is censored, or you have tried and failed to "
-"connect to the Tor network and no other solutions have worked, select âYesâ."
-" You will then be taken to the [Circumvention](/circumvention) screen to "
-"configure a pluggable transport."
+"The first checkbox asks if access to the Tor network is blocked or censored "
+"on your connection."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If you do not believe this is the case, leave this unchecked."
+msgstr "If you do not believe this is the case, leave this unchecked."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
msgstr ""
-"The next screen asks if your connection uses a proxy. In most cases, this is"
-" not necessary. You will usually know if you need to answer âYesâ, as the "
-"same settings will be used for other browsers on your system. If possible, "
-"ask your network administrator for guidance. If your connection does not use"
-" a proxy, click âContinueâ."
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, check the "
+"checkbox."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
-msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
-msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy_question.png\">"
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
+msgstr ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport."
#: https//tb-manual.torproject.org/running-tor-browser/
#: (content/running-tor-browser/contents+en.lrtopic.body)
msgid "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
msgstr "<img class=\"col-md-6\" src=\"../../static/images/proxy.png\">"
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+msgstr ""
+"The second checkbox asks if your connection uses a proxy. In most cases, "
+"this is not necessary. You will usually know if you need to check this "
+"checkbox because the same settings will be used for other browsers on your "
+"system."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If possible, ask your network administrator for guidance."
+msgstr "If possible, ask your network administrator for guidance."
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "If your connection does not use a proxy, click âConnectâ."
+msgstr "If your connection does not use a proxy, click âConnectâ."
+
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.title)
msgid "CIRCUMVENTION"
@@ -744,13 +788,13 @@ msgstr "meek"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
msgstr ""
-"meek transports all make it look like you are browsing a major web site "
-"instead of using Tor. meek-azure makes it look like you are using a "
-"Microsoft web site."
+"meek transports make it look like you are browsing a major web site instead "
+"of using Tor. meek-azure makes it look like you are using a Microsoft web "
+"site."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -789,35 +833,65 @@ msgstr "### USING PLUGGABLE TRANSPORTS"
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
msgstr ""
-"To use a pluggable transport, click 'Configure' when starting Tor Browser "
-"for the first time. In the window that appears, from the drop-down menu, "
-"select whichever pluggable transport you'd like to use."
+"To use a pluggable transport, click \"Configure\" when starting Tor Browser "
+"for the first time."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
msgstr ""
-"Or, if you have Tor Browser running, click on 'Preferences' in the hamburger"
-" menu and then on 'Tor' in the sidebar. In 'Bridges' section, check the box "
-"'Use a bridge', and from the drop-down menu 'Select a built-in bridge', "
-"choose whichever pluggable transport you'd like to use."
+"After checking the checkbox \"Tor is censored in my country,\" choose the "
+"\"Select a built-in bridge\" option."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
msgstr ""
-"Once you've selected the pluggable transport you'd like to use, click "
-"'Connect' to save your settings."
+"From the dropdown, select whichever pluggable transport you'd like to use."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+msgstr ""
+"Once you've selected the pluggable transport, click \"Connect\" to save your"
+" settings."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+msgstr ""
+"Or, if you have Tor Browser running, click on \"Preferences\" in the "
+"hamburger menu and then on \"Tor\" in the sidebar."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Select a built-in bridge,\" choose whichever pluggable "
+"transport you'd like to use from the dropdown."
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Your settings will automatically be saved once you close the tab."
+msgstr "Your settings will automatically be saved once you close the tab."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -837,28 +911,28 @@ msgstr ""
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
"If you are trying to circumvent a blocked connection for the first time, you"
-" should try the different transports: obfs4, snowflake, and meek-azure."
+" should try the different transports: obfs4, snowflake, or meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
msgstr ""
"If you try all of these options, and none of them gets you online, you will "
-"need to enter bridge addresses manually."
+"need to request a bridge or manually enter bridge addresses."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
msgid ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
msgstr ""
-"Read the [Bridges](/en-US/bridges/) section to learn what bridges are and "
-"how to obtain them."
+"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
+" obtain them."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -955,41 +1029,60 @@ msgstr "### USING MOAT"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window."
+"<img class=\"col-md-6\" align=\"right\" hspace=\"5\" "
+"src=\"../../static/images/request-a-bridge.png\">"
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
msgstr ""
-"Otherwise, click on 'Preferences' in the hamburger menu (main menu) and then"
-" on 'Tor' in the sidebar."
+"If you're starting Tor Browser for the first time, click \"Configure\" to "
+"open the Tor Network Settings window."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
msgstr ""
-"In the Tor Network Settings window, select 'Tor is censored in my country.'"
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Request a bridge from torproject.org\" and click \"Request a Bridge...\" "
+"for BridgeDB to provide a bridge."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
msgstr ""
-"Then, select 'Request a bridge from torproject.org' and click 'Request a "
-"bridge...'"
+"Complete the CAPTCHA and click \"Submit.\" Click \"Connect\" to save your "
+"settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
-msgid "Complete the CAPTCHA and click 'Submit'."
-msgstr "Complete the CAPTCHA and click 'Submit'."
+msgid ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+msgstr ""
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Request a bridge from torproject.org,\" click \"Request a New "
+"Bridge...\" for BridgeDB to provide a bridge."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
+msgstr ""
+"Complete the CAPTCHA and click \"Submit.\" Your setting will automatically "
+"be saved once you close the tab."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1017,24 +1110,29 @@ msgstr ""
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
msgstr ""
-"If you're starting Tor Browser for the first time, click 'Configure' to open"
-" the Tor Network Settings window. Otherwise, click on 'Preferences' in the "
-"hamburger menu (main menu) and then on 'Tor' in the sidebar to access these "
-"options."
+"After checking the checkbox \"Tor is censored in my country,\" choose "
+"\"Provide a bridge I know\" and enter each bridge address on a separate "
+"line."
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid "Click \"Connect\" to save your settings."
+msgstr "Click \"Connect\" to save your settings."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
msgid ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
msgstr ""
-"In 'Bridges' section, check the box 'Use a bridge', then, select 'Provide a "
-"bridge I know' and enter each bridge address on a separate line."
+"In the \"Bridges\" section, check the checkbox \"Use a bridge,\" and from "
+"the option \"Provide a bridge I know,\" enter each bridge address on a "
+"separate line."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
@@ -1653,6 +1751,8 @@ msgstr "How to update Tor Browser"
#: https//tb-manual.torproject.org/updating/
#: (content/updating/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Tor Browser must be kept updated at all times. If you continue to use an "
"outdated version of the software, you may be vulnerable to serious security "
@@ -1838,6 +1938,8 @@ msgstr ""
#: https//tb-manual.torproject.org/troubleshooting/
#: (content/troubleshooting/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### KNOWN ISSUES"
msgstr "### KNOWN ISSUES"
@@ -2219,6 +2321,986 @@ msgstr ""
"* BitTorrent in specific is [not anonymous over "
"Tor](https://blog.torproject.org/bittorrent-over-tor-isnt-good-idea)."
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.description)
+msgid "Learn about Tor for mobile devices"
+msgstr "Learn about Tor for mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Android"
+msgstr "### Tor Browser for Android"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+msgstr ""
+"Tor Browser for Android is the only official mobile browser supported and "
+"developed by the Tor Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+msgstr ""
+"It is like the desktop Tor Browser, but for your Android mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+msgstr ""
+"Some of the prime features of Tor Browser for Android include: reducing "
+"tracking across websites, defending against surveillance, resisting browser "
+"fingerprinting, and circumventing censorship."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### DOWNLOADING AND INSTALLATION"
+msgstr "### DOWNLOADING AND INSTALLATION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+msgstr ""
+"There exists Tor Browser for Android and Tor Browser for Android (alpha)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+msgstr ""
+"Non-technical users should get Tor Browser for Android, as this is stable "
+"and less prone to errors."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+msgstr ""
+"Tor Browser for Android is available on Play Store, F-droid and the Tor "
+"Project website."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"It is very risky to download Tor Browser outside of these three platforms."
+msgstr ""
+"It is very risky to download Tor Browser outside of these three platforms."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Google Play"
+msgstr "#### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+msgstr ""
+"You can install Tor Browser for Android from [Google Play "
+"Store](https://play.google.com/store/apps/details?id=org.torproject.torbrow…."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### F-Droid"
+msgstr "#### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+msgstr ""
+"The Guardian Project provides Tor Browser for Android on their F-Droid "
+"repository."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+msgstr ""
+"If you would prefer installing the app from F-Droid, please follow these "
+"steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+msgstr ""
+"1. Install the F-Droid app on your Android device from [the F-droid "
+"website.](https://f-droid.org/)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "2. After installing F-Droid, open the app."
+msgstr "2. After installing F-Droid, open the app."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "3. At the lower-right-hand corner, open \"Settings\"."
+msgstr "3. At the lower-right-hand corner, open \"Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "4. Under the \"My Apps\" section, open Repositories."
+msgstr "4. Under the \"My Apps\" section, open Repositories."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "5. Toggle \"Guardian Project Official Releases\" as enabled."
+msgstr "5. Toggle \"Guardian Project Official Releases\" as enabled."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+msgstr ""
+"6. Now F-Droid downloads the list of apps from the Guardian Project's "
+"repository (Note: this may take a few minutes)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "7. Tap the Back button at the upper-left-hand corner."
+msgstr "7. Tap the Back button at the upper-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "8. Open \"Latest\" at the lower-left-hand corner."
+msgstr "8. Open \"Latest\" at the lower-left-hand corner."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+msgstr ""
+"10. Open the search screen by tapping the magnifying glass at the lower-"
+"right side."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "11. Search for \"Tor Browser for Android\"."
+msgstr "11. Search for \"Tor Browser for Android\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "12. Open the query result by \"The Tor Project\" and install."
+msgstr "12. Open the query result by \"The Tor Project\" and install."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### The Tor Project website"
+msgstr "#### The Tor Project website"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+msgstr ""
+"You can also get Tor Browser for Android by downloading and installing the "
+"apk from the [Tor Project "
+"website](https://www.torproject.org/download/#android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+msgstr "### RUNNING TOR BROWSER FOR ANDROID FOR THE FIRST TIME"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+msgstr ""
+"When you run Tor Browser for the first time, you will see the option to "
+"connect directly to the Tor network, or to configure Tor Browser for your "
+"connection with the settings icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Connect"
+msgstr "#### Connect"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-connect.png\" alt=\"Connect to Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+msgstr ""
+"Once clicked, changing sentences will appear at the bottom of the screen, "
+"indicating Torâs connection progress."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+msgstr ""
+"If you are on a relatively fast connection, but this text seems to get stuck"
+" at a certain point, see the [Troubleshooting](https://tb-"
+"manual.torproject.org/troubleshooting) page for help solving the problem."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Configure"
+msgstr "#### Configure"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-configure.png\" alt=\"Configure Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+msgstr ""
+"If you know that your connection is censored, you should select the settings"
+" icon."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+msgstr ""
+"The first screen asks if access to the Tor network is blocked or censored on"
+" your connection."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+msgstr ""
+"If you know your connection is censored, or you have tried and failed to "
+"connect to the Tor network and no other solutions have worked, click the "
+"switch."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+msgstr ""
+"You will then be taken to the [Circumvention](/mobile-tor/#circumvention) "
+"screen to configure a pluggable transport."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### CIRCUMVENTION"
+msgstr "### CIRCUMVENTION"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+msgstr ""
+"Bridge relays are Tor relays that are not listed in the public Tor "
+"directory."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+msgstr ""
+"Bridges are useful for Tor users under oppressive regimes, and for people "
+"who want an extra layer of security because they're worried somebody will "
+"recognize that they are contacting a public Tor relay IP address."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+msgstr ""
+"To use a pluggable transport, click on the settings icon when starting Tor "
+"Browser for the first time."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+msgstr ""
+"The first screen asks if access to the Tor network is censored on your "
+"connection. Click on the switch to toggle it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-censored.png\" alt=\"Censored internet on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+msgstr ""
+"The next screen provides the option to either use a built-in bridge or "
+"custom bridge."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+msgstr ""
+"With the \"Select a bridge\" option, you will have two options: \"obfs4\" "
+"and \"meek-azure\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-select-a-bridge.png\" alt=\"Select a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-selected-a-bridge.png\" alt=\"Selected a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+msgstr ""
+"If you choose the \"Provide a Bridge I know\" option, then you have to enter"
+" a [bridge address](https://tb-manual.torproject.org/bridges/)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provide-a-bridge.png\" alt=\"Provide a bridge on Tor Browser for "
+"Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-provided-a-bridge.png\" alt=\"Provide brigde addresses on Tor "
+"Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### MANAGING IDENTITIES"
+msgstr "### MANAGING IDENTITIES"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### New Identity"
+msgstr "#### New Identity"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-new-identity.png\" alt=\"New Identity on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+msgstr ""
+"When Tor Browser is running, you would see so in your phone's notification "
+"panel along with the button \"NEW IDENTITY\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Clicking on this button will provide you with a new identity."
+msgstr "Clicking on this button will provide you with a new identity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+msgstr ""
+"Unlike in Tor Browser for Desktop, the \"NEW IDENTITY\" button in Tor "
+"Browser for Android does not prevent your subsequent browser activity from "
+"being linkable to what you were doing before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Selecting it will only change your Tor circuit."
+msgstr "Selecting it will only change your Tor circuit."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### SECURITY SETTINGS"
+msgstr "### SECURITY SETTINGS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-security-settings.gif\" alt=\"Security settings and security slider"
+" on Tor Browser for Android\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+msgstr ""
+"[Security settings](https://tb-manual.torproject.org/security-settings/) "
+"disable certain web features that can be used to attack your security and "
+"anonymity."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+msgstr ""
+"Tor Browser for Android provides the same three security levels that are "
+"available on desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can modify the security level by following given steps:"
+msgstr "You can modify the security level by following given steps:"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Tap on a button of 3 vertical dots in URL bar."
+msgstr "* Tap on a button of 3 vertical dots in URL bar."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* Scroll down and tap on \"Security Settings\"."
+msgstr "* Scroll down and tap on \"Security Settings\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "* You can now select an option from the security level slider."
+msgstr "* You can now select an option from the security level slider."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UPDATING"
+msgstr "### UPDATING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "You can update Tor Browser automatically or manually."
+msgstr "You can update Tor Browser automatically or manually."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android automatically"
+msgstr "#### Updating Tor Browser for Android automatically"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+msgstr ""
+"This method assumes that you have either Google Play or F-droid installed on"
+" your mobile device."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### Google Play"
+msgstr "##### Google Play"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-google-play.png\" alt=\"Updating Tor Browser for Android on "
+"Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Updates\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+msgstr ""
+"If you find Tor Browser on the list of apps which need updating, select it "
+"and click the \"Update\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "##### F-Droid"
+msgstr "##### F-Droid"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-update-f-droid.png\" alt=\"Updating Tor Browser for Android on "
+"F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Click on \"Settings\", then go to \"Manage installed apps\"."
+msgstr "Click on \"Settings\", then go to \"Manage installed apps\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the \"Update\" "
+"button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Updating Tor Browser for Android manually"
+msgstr "#### Updating Tor Browser for Android manually"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+msgstr ""
+"Visit the [Tor Project "
+"website](https://www.torproject.org/download/#android) and download a copy "
+"of the latest Tor Browser release, then [install](/mobile-tor/#downloading-"
+"and-installation) it as before."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+msgstr ""
+"In most cases, this latest version of Tor Browser will install over the "
+"older version, thereby upgrading the browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+msgstr ""
+"If doing this fails to update the browser, you may have to uninstall Tor "
+"Browser before reinstalling it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+msgstr ""
+"With Tor Browser closed, remove it from your system by uninstalling it using"
+" your device's settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button. "
+"Afterwards,download the latest Tor Browser release and install it."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### UNINSTALLING"
+msgstr "### UNINSTALLING"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+msgstr ""
+"Tor Browser for Android can be uninstalled directly from F-droid, Google "
+"Play or from your mobile device's app settings."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+msgstr ""
+"Click on the hamburger menu next to the search bar and navigate to \"My apps"
+" & games\" > \"Installed\"."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+msgstr ""
+"Select Tor Browser from the list of installed apps, then press the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+msgstr ""
+"On the next screen, select Tor Browser and finally click on the "
+"\"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Mobile device app settings"
+msgstr "#### Mobile device app settings"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+msgstr ""
+"Depending on your mobile device's brand, navigate to Settings > Apps, then "
+"select Tor Browser and click on the \"Uninstall\" button."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+msgstr ""
+"At the moment, there are some features which are not available in Tor "
+"Browser for Android, but are currently available in Tor Browser for desktop."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+msgstr ""
+"* You can't see your Tor circuit. "
+"[#25764](https://trac.torproject.org/projects/tor/ticket/25764)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+msgstr ""
+"* Custom obfs4 bridges not working. "
+"[#30767](https://trac.torproject.org/projects/tor/ticket/30767)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+msgstr ""
+"* 'Clear private data' option does not clear browsing history. "
+"[#27592](https://trac.torproject.org/projects/tor/ticket/27592)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+msgstr ""
+"* Tor Browser for Android does not connect when moved to the SD Card. "
+"[#31814](https://trac.torproject.org/projects/tor/ticket/31814)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+msgstr ""
+"* You can't take screenshots while using Tor Browser for Android. "
+"[#27987](https://trac.torproject.org/projects/tor/ticket/27987)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+msgstr ""
+"* You can't save images. "
+"[#31013](https://trac.torproject.org/projects/tor/ticket/31013)"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### More about Tor on mobile devices"
+msgstr "### More about Tor on mobile devices"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orfox"
+msgstr "#### Orfox"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+msgstr ""
+"Orfox was first released in 2015 by The Guardian Project, with the aim of "
+"giving Android users a way to browse the internet over Tor."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+msgstr ""
+"Over the next three years, Orfox continously improved and became a popular "
+"way for people to browse the internet with more privacy"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+msgstr ""
+"than standard browsers, and Orfox was crucial for helping people circumvent "
+"censorship and access blocked sites and critical resources."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+msgstr ""
+"In 2019, [Orfox was sunsetted](https://blog.torproject.org/orfox-paved-way-"
+"tor-browser-android) after the official Tor Browser for"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Android was released."
+msgstr "Android was released."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### Orbot"
+msgstr "#### Orbot"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+msgstr ""
+"Orbot is a free proxy app that empowers other apps to use the Tor network."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+msgstr ""
+"Orbot uses Tor to encrypt your Internet traffic. Then you can use it with "
+"other apps installed on your mobile device to"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "circumvent censorship and protect against surveillance."
+msgstr "circumvent censorship and protect against surveillance."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+msgstr ""
+"Orbot can be downloaded and installed from [Google "
+"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+msgstr ""
+"Check out [our Support "
+"portal](https://support.torproject.org/tormobile/tormobile-6/) to know if "
+"you need both Tor Browser for Android and Orbot or either one."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for iOS"
+msgstr "### Tor Browser for iOS"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "There is no Tor Browser for iOS."
+msgstr "There is no Tor Browser for iOS."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+msgstr ""
+"We recommend an iOS app called Onion Browser, which is open source, uses Tor"
+" routing, and is developed by someone who works closely with the Tor "
+"Project."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+msgstr ""
+"However, Apple requires browsers on iOS to use something called Webkit, "
+"which prevents Onion Browser from having the same privacy protections as Tor"
+" Browser."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+msgstr ""
+"[Learn more about Onion Browser](https://blog.torproject.org/tor-heart-"
+"onion-browser-and-more-ios-tor)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+msgstr ""
+"Download Onion Browser from the [App Store](https://itunes.apple.com/us/app"
+"/onion-browser/id519296448)."
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "### Tor Browser for Windows Phone"
+msgstr "### Tor Browser for Windows Phone"
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"There is currently no supported method for running Tor on Windows Phone."
+msgstr ""
+"There is currently no supported method for running Tor on Windows Phone."
+
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
@@ -2360,13 +3442,13 @@ msgstr "DONATE NOW"
msgid "Give today, and Mozilla will match your donation."
msgstr "Give today, and Mozilla will match your donation."
-#: lego/templates/footer.html:10 lego/templates/footer.html:19
-#: lego/templates/navbar.html:83 templates/footer.html:10
-#: templates/footer.html:19 templates/navbar.html:83
+#: lego/templates/footer.html:13 lego/templates/footer.html:22
+#: lego/templates/navbar.html:83 templates/footer.html:13
+#: templates/footer.html:22 templates/navbar.html:83
msgid "Download Tor Browser"
msgstr "Download Tor Browser"
-#: lego/templates/footer.html:11 templates/footer.html:11
+#: lego/templates/footer.html:14 templates/footer.html:14
msgid ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
@@ -2374,11 +3456,11 @@ msgstr ""
"Download Tor Browser to experience real private browsing without tracking, "
"surveillance, or censorship."
-#: lego/templates/footer.html:28 templates/footer.html:28
+#: lego/templates/footer.html:35 templates/footer.html:35
msgid "Our mission:"
msgstr "Our mission:"
-#: lego/templates/footer.html:29 templates/footer.html:29
+#: lego/templates/footer.html:36 templates/footer.html:36
msgid ""
"To advance human rights and freedoms by creating and deploying free and open"
" source anonymity and privacy technologies, supporting their unrestricted "
@@ -2390,33 +3472,33 @@ msgstr ""
"availability and use, and furthering their scientific and popular "
"understanding."
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate"
msgstr "Donate"
-#: lego/templates/footer.html:57 lego/templates/footer.html:59
+#: lego/templates/footer.html:64 lego/templates/footer.html:66
#: lego/templates/navbar.html:18 lego/templates/navbar.html:20
-#: templates/footer.html:57 templates/footer.html:59 templates/navbar.html:18
+#: templates/footer.html:64 templates/footer.html:66 templates/navbar.html:18
#: templates/navbar.html:20
msgid "Donate Now"
msgstr "Donate Now"
-#: lego/templates/footer.html:66 templates/footer.html:66
+#: lego/templates/footer.html:73 templates/footer.html:73
msgid "Subscribe to our Newsletter"
msgstr "Subscribe to our Newsletter"
-#: lego/templates/footer.html:67 templates/footer.html:67
+#: lego/templates/footer.html:74 templates/footer.html:74
msgid "Get monthly updates and opportunities from the Tor Project:"
msgstr "Get monthly updates and opportunities from the Tor Project:"
-#: lego/templates/footer.html:68 templates/footer.html:68
+#: lego/templates/footer.html:75 templates/footer.html:75
msgid "Sign up"
msgstr "Sign up"
-#: lego/templates/footer.html:87 templates/footer.html:87
+#: lego/templates/footer.html:94 templates/footer.html:94
#, python-format
msgid ""
"Trademark, copyright notices, and rules for use by third parties can be "
1
0