tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
December 2021
- 15 participants
- 1464 discussions
commit 405c45a1c776da512673f34f2d864c61b313bad8
Author: n8fr8 <nathan(a)guardianproject.info>
Date: Mon Feb 22 22:06:38 2021 -0500
update version code to 1641200200
---
app/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/build.gradle b/app/build.gradle
index 9b2db5d8..32e828e1 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -81,7 +81,7 @@ android {
minSdkVersion 16
applicationId 'org.torproject.android'
targetSdkVersion 30
- versionCode 1641100100
+ versionCode 1641200200
versionName getVersionName()
archivesBaseName = "Orbot-$versionName"
1
0

[orbot/master] remove IOUtils dependency and unneeded exception catching
by n8fr8@torproject.org 22 Dec '21
by n8fr8@torproject.org 22 Dec '21
22 Dec '21
commit 7ef0f913a269faa56c2bbebdad51c2e81090f704
Author: n8fr8 <nathan(a)guardianproject.info>
Date: Mon Feb 22 21:46:43 2021 -0500
remove IOUtils dependency and unneeded exception catching
---
.../org/torproject/android/service/OrbotService.java | 9 ++-------
.../torproject/android/service/vpn/OrbotVpnManager.java | 16 +++++++++-------
2 files changed, 11 insertions(+), 14 deletions(-)
diff --git a/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java b/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java
index 2807a2c0..884e07dd 100644
--- a/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java
+++ b/orbotservice/src/main/java/org/torproject/android/service/OrbotService.java
@@ -500,13 +500,8 @@ public class OrbotService extends VpnService implements TorServiceConstants, Orb
}).start();
- try {
- mVpnManager = new OrbotVpnManager(this);
- } catch (IOException e) {
- e.printStackTrace();
- } catch (TimeoutException e) {
- e.printStackTrace();
- }
+ mVpnManager = new OrbotVpnManager(this);
+
} catch (Exception e) {
//what error here
Log.e(OrbotConstants.TAG, "Error installing Orbot binaries", e);
diff --git a/orbotservice/src/main/java/org/torproject/android/service/vpn/OrbotVpnManager.java b/orbotservice/src/main/java/org/torproject/android/service/vpn/OrbotVpnManager.java
index df7cf087..66538b04 100644
--- a/orbotservice/src/main/java/org/torproject/android/service/vpn/OrbotVpnManager.java
+++ b/orbotservice/src/main/java/org/torproject/android/service/vpn/OrbotVpnManager.java
@@ -34,7 +34,6 @@ import android.widget.Toast;
import com.runjva.sourceforge.jsocks.protocol.ProxyServer;
import com.runjva.sourceforge.jsocks.server.ServerAuthenticatorNone;
-import org.apache.commons.io.IOUtils;
import org.torproject.android.service.OrbotConstants;
import org.torproject.android.service.OrbotService;
import org.torproject.android.service.R;
@@ -44,7 +43,6 @@ import org.torproject.android.service.util.Prefs;
import java.io.BufferedReader;
import java.io.File;
-import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
@@ -52,7 +50,6 @@ import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.InetAddress;
import java.util.ArrayList;
-import java.util.List;
import java.util.concurrent.TimeoutException;
import static org.torproject.android.service.TorServiceConstants.ACTION_START;
@@ -79,7 +76,7 @@ public class OrbotVpnManager implements Handler.Callback {
private boolean isRestart = false;
private final VpnService mService;
- public OrbotVpnManager(VpnService service) throws IOException, TimeoutException {
+ public OrbotVpnManager(VpnService service) {
mService = service;
filePdnsd = CustomNativeLoader.loadNativeBinary(service.getApplicationContext(), PDNSD_BIN, new File(service.getFilesDir(), PDNSD_BIN));
Tun2Socks.init();
@@ -116,7 +113,7 @@ public class OrbotVpnManager implements Handler.Callback {
if (intent != null) {
String action = intent.getAction();
- if (!TextUtils.isEmpty(action)) {
+ if (action != null) {
if (action.equals(ACTION_START_VPN) || action.equals(ACTION_START)) {
Log.d(TAG, "starting VPN");
@@ -387,9 +384,14 @@ public class OrbotVpnManager implements Handler.Callback {
private void stopDns() {
if (filePdnsPid != null && filePdnsPid.exists()) {
- List<String> lines;
+ ArrayList<String> lines = new ArrayList<>();
try {
- lines = IOUtils.readLines(new FileReader(filePdnsPid));
+ BufferedReader reader = new BufferedReader(new FileReader(filePdnsPid));
+
+ String line = null;
+ while ((line = reader.readLine())!= null)
+ lines.add(line);
+
String dnsPid = lines.get(0);
VpnUtils.killProcess(dnsPid, "");
filePdnsPid.delete();
1
0
commit 3fccd4f51a10d34e06dcf6c79ac374cca96cb995
Author: n8fr8 <nathan(a)guardianproject.info>
Date: Mon Feb 22 22:16:47 2021 -0500
add changelog fastlane metadata
---
fastlane/metadata/android/en-US/changelogs/1641200200.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/fastlane/metadata/android/en-US/changelogs/1641200200.txt b/fastlane/metadata/android/en-US/changelogs/1641200200.txt
new file mode 100644
index 00000000..f401c401
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/1641200200.txt
@@ -0,0 +1,4 @@
+* support for OnionServices v3
+* improvements to bridge configuration
+* ensures VPN mode is treated as "unmetered connection"
+* experimental mode to enable running as a Snowflake proxy
1
0

[translation/tails-misc_release] new translations in tails-misc_release
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit d21b52e975e73a4b0dfefd4503a8ed345a9dd9d3
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 21:46:24 2021 +0000
new translations in tails-misc_release
---
ar_EG.po | 2988 --------------------------------------------------------------
1 file changed, 2988 deletions(-)
diff --git a/ar_EG.po b/ar_EG.po
deleted file mode 100644
index a11db0a171..0000000000
--- a/ar_EG.po
+++ /dev/null
@@ -1,2988 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-12-06 13:32+0100\n"
-"PO-Revision-Date: 2021-12-06 15:26+0000\n"
-"Last-Translator: Transifex Bot <>\n"
-"Language-Team: Arabic (Egypt) (http://www.transifex.com/otf/torproject/language/ar_EG/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ar_EG\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#: config/chroot_local-includes/etc/whisperback/config.py:69
-#, python-format
-msgid ""
-"<h1>Help us fix your bug!</h1>\n"
-"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
-"<p><strong>Do not include more personal information than\n"
-"needed!</strong></p>\n"
-"<h2>About giving us an email address</h2>\n"
-"<p>\n"
-"Giving us an email address allows us to contact you to clarify the problem. This\n"
-"is needed for the vast majority of the reports we receive as most reports\n"
-"without any contact information are useless. On the other hand it also provides\n"
-"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
-"confirm that you are using Tails.\n"
-"</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:128
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
-msgid ""
-"You can install additional software automatically from your persistent "
-"storage when starting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
-msgid ""
-"The following software is installed automatically from your persistent "
-"storage when starting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
-msgid ""
-"To add more, install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
-msgid "_Create persistent storage"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-msgid "Persistence is disabled for Electrum"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:66
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet.\n"
-"It is strongly recommended to only run Electrum when its persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:67
-msgid "Do you want to start Electrum anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:70
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:71
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
-msgid "Unknown time"
-msgstr ""
-
-#. Translators: Don't translate {count}, it's a place holder and
-#. will be replaced.
-#. y is the short form for years.
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
-#, perl-brace-format
-msgid "1y"
-msgid_plural "{count}y"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: Don't translate {count}, it's a place holder and
-#. will be replaced.
-#. d is the short form for days.
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:82
-#, perl-brace-format
-msgid "1d"
-msgid_plural "{count}d"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: Don't translate {count}, it's a place holder and
-#. will be replaced.
-#. h is the short form for hours;
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:86
-#, perl-brace-format
-msgid "1h"
-msgid_plural "{count}h"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: Don't translate {count}, it's a place holder and
-#. will be replaced.
-#. m is the short form for minutes;
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:90
-#, perl-brace-format
-msgid "1m"
-msgid_plural "{count}m"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: Don't translate {count}, it's a place holder and
-#. will be replaced.
-#. s is the short form for seconds;
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
-#, perl-brace-format
-msgid "1s"
-msgid_plural "{count}s"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: don't translate {time}, {downloaded}, {size}
-#. and {speed}, they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
-#, perl-brace-format
-msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
-msgstr ""
-
-#. Translators: KB is the short form for kilobyte
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
-msgid "KB"
-msgstr ""
-
-#. Translators: MB is the short form for megabyte
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:35
-msgid "MB"
-msgstr ""
-
-#. Translators: GB is the short form for gigabyte
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:37
-msgid "GB"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:43
-msgid "bytes"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:198
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:710
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:891
-msgid ""
-"For debugging information, execute the following command: sudo tails-"
-"debugging-info"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:290
-msgid ""
-"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
-"prevents determining whether an upgrade is available from our "
-"website.</b>\\n\\nCheck your network connection, and restart Tails to try "
-"upgrading again.\\n\\nIf the problem persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:304
-msgid "Error while downloading the signing key"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:315
-msgid "Error while updating the signing key"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:342
-msgid "Error while checking for upgrades"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:344
-msgid ""
-"<b>Could not determine whether an upgrade is available from our website.</b>\n"
-"\n"
-"Check your network connection, and restart Tails to try upgrading again.\n"
-"\n"
-"If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:359
-msgid "no automatic upgrade is available from our website for this version"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:365
-msgid "your device was not created using a USB image or Tails Installer"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:370
-msgid "Tails was started from a DVD or a read-only device"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:375
-msgid "there is not enough free space on the Tails system partition"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:380
-msgid "not enough memory is available on this system"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:385
-#, perl-brace-format
-msgid "No explanation available for reason '{reason}'."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:408
-msgid "The system is up-to-date"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:413
-msgid "This version of Tails is outdated, and may have security issues."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:443
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {space_needed} of free space on "
-"Tails system partition, but only {free_space} is available."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:455
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {memory_needed} of free memory, "
-"but only {free_memory} is available."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:466
-msgid ""
-"An error ocurred while detecting available upgrades.\n"
-"This should not happen. Please report a bug."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:469
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:488
-msgid "Error while detecting available upgrades"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:484
-msgid ""
-"An incremental upgrade is available, but no full upgrade is.\n"
-"This should not happen. Please report a bug."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:497
-#, perl-brace-format
-msgid ""
-"<b>You should upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"We recommend you close all other applications during the upgrade.\n"
-"Downloading the upgrade might take a long time, from several minutes to a few hours.\n"
-"\n"
-"Download size: {size}\n"
-"\n"
-"Do you want to upgrade now?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:510
-msgid "Upgrade available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:511
-msgid "Upgrade now"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:512
-msgid "Upgrade later"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:519
-#, perl-brace-format
-msgid ""
-"<b>You should do a manual upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
-"\n"
-"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:530
-msgid "New version available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
-msgid "Downloading upgrade"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:613
-#, perl-brace-format
-msgid "Downloading the upgrade to {name} {version}..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:703
-msgid ""
-"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
-"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
-"persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729
-msgid "Error while downloading the upgrade"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:724
-#, perl-brace-format
-msgid ""
-"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
-"did not complain. Please report a bug."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
-msgid "Error while creating temporary downloading directory"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:743
-msgid "Failed to create temporary download directory"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:767
-msgid ""
-"<b>Could not choose a download server.</b>\n"
-"\n"
-"This should not happen. Please report a bug."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:770
-msgid "Error while choosing a download server"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:784
-msgid ""
-"The upgrade was successfully downloaded.\n"
-"\n"
-"The network connection will be disabled when applying the upgrade.\n"
-"\n"
-"Please save your work and close all other applications."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789
-msgid "Upgrade successfully downloaded"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:790
-msgid "Apply upgrade"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:797
-msgid ""
-"<b>Your Tails device was successfully upgraded.</b>\n"
-"\n"
-"Some security features were temporarily disabled.\n"
-"You should restart Tails on the new version as soon as possible.\n"
-"\n"
-"Do you want to restart now?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:802
-msgid "Restart Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:803
-msgid "Restart now"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:804
-msgid "Restart later"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
-msgid "Error while restarting the system"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:815
-msgid "Failed to restart the system"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:828
-msgid "Error while shutting down the network"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:829
-msgid "Failed to shutdown network"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:839
-msgid "Error while cancelling the upgrade download"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:840
-msgid "Failed to cancel the upgrade download"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:846
-msgid "Upgrading the system"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:848
-msgid ""
-"<b>Your Tails device is being upgraded...</b>\n"
-"\n"
-"For security reasons, the network connection is now disabled."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:885
-msgid ""
-"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device"
-" needs to be repaired and might be unable to restart.\\n\\nPlease follow the"
-" instructions at "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:895
-msgid "Error while installing the upgrade"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
-msgid "Additional Settings"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/bin/tor-browser:49
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
-msgid "Add"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
-msgid "Back"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:64
-msgid "_Administration Password"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:187
-msgid "_MAC Address Anonymization"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:250
-msgid "_Offline Mode"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:259
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
-msgid "Enable networking (default)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:261
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:459
-msgid "Disable all networking"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:316
-msgid "_Network Connection"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:324
-msgid "Obsolete"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:339
-msgid "_Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:348
-msgid "Enabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:350
-msgid "Disabled (default)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:401
-msgid "On (default)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:403
-msgid "On"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:405
-msgid "Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:407
-msgid "Off (default)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:91
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stderr}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:122
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:139
-#, python-brace-format
-msgid ""
-"cryptsetup failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:153
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:167
-#, python-brace-format
-msgid ""
-"umount failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:67
-msgid "Unlocking…"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:95
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394
-msgid "Unlock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:100
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
-msgid "Cannot unlock encrypted storage with this passphrase."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
-msgid "_Language"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
-msgid "_Formats"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
-msgid "_Keyboard Layout"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:261
-#, python-format
-msgid "Unable to write on %(device)s, skipping."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:294
-#, python-format
-msgid ""
-"Some partitions of the target device %(device)s are mounted. They will be "
-"unmounted before starting the installation process."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:303
-msgid "Extracting live image to the target device..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:310
-#, python-format
-msgid "Wrote to device at %(speed)d MB/sec"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:408
-#, python-format
-msgid ""
-"There was a problem executing the following command: `%(command)s`.\n"
-"A more detailed error log has been written to \"%(filename)s\"."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
-#, python-format
-msgid ""
-"Not enough free space on device.\n"
-"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:433
-#, python-format
-msgid "Creating %sMB persistent overlay"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:483
-#, python-format
-msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:497
-msgid "Removing existing Tails system"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:507
-#, python-format
-msgid "Unable to remove file from previous Tails system: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:514
-#, python-format
-msgid "Unable to chmod %(file)s: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
-#, python-format
-msgid "Unable to remove directory from previous Tails system: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:569
-#, python-format
-msgid "Cannot find device %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:619
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:836
-msgid "Unknown filesystem. Your device may need to be reformatted."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:622
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:839
-#, python-format
-msgid "Unsupported filesystem: %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:640
-#, python-format
-msgid "Unknown GLib exception while trying to mount device: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:645
-#, python-format
-msgid "Unable to mount device: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:650
-msgid "No mount points found"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:661
-#, python-format
-msgid "Entering unmount_device for \"%(device)s\""
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
-#, python-format
-msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
-#, python-format
-msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
-#, python-format
-msgid "Mount %s exists after unmounting"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:698
-#, python-format
-msgid "Partitioning device %(device)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:821
-#, python-format
-msgid "Unsupported device '%(device)s', please report a bug."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:824
-msgid "Trying to continue anyway."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:833
-msgid "Verifying filesystem..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:857
-#, python-format
-msgid "Unable to change volume label: %(message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:862
-msgid "Installing bootloader..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:869
-#, python-format
-msgid "Removing %(file)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:951
-#, python-format
-msgid "%s already bootable"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:971
-msgid "Unable to find partition"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:990
-#, python-format
-msgid "Formatting %(device)s as FAT32"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1053
-#, python-format
-msgid "Reading extracted MBR from %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1057
-#, python-format
-msgid "Could not read the extracted MBR from %(path)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1070
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1071
-#, python-format
-msgid "Resetting Master Boot Record of %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1076
-msgid "Drive is a loopback, skipping MBR reset"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1080
-msgid "Synchronizing data on disk..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
-msgid ""
-"Error: Cannot set the label or obtain the UUID of your device. Unable to "
-"continue."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
-#, python-format
-msgid "Installation complete! (%s)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
-msgid "Tails installation failed!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
-#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
-msgid "Tails Installer"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
-msgid "Clone the current Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
-msgid "Use a downloaded Tails ISO image"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
-msgid "Upgrade"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
-msgid "Manual Upgrade Instructions"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
-msgid "Install"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
-msgid "Installation Instructions"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
-#, python-format
-msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
-msgid "No ISO image selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
-msgid "Please select a Tails ISO image."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
-#, python-format
-msgid ""
-"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
-"manufacturer and Tails will fail to start from it. Please try installing on "
-"a different model."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
-#, python-format
-msgid ""
-"The device \"%(pretty_name)s\" is too small to install Tails (at least "
-"%(size)s GB is required)."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
-#, python-format
-msgid ""
-"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a downloaded Tails ISO image:\n"
-"%(dl_url)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
-msgid "No device suitable to install Tails could be found"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
-#, python-format
-msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
-msgid "An error happened while installing Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
-msgid "Installation complete!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
-msgid "Unable to mount device"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
-#, python-format
-msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
-msgid ""
-"\n"
-"\n"
-"The persistent storage on this USB stick will be lost."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
-msgid "Delete Persistent Storage and Reinstall"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
-msgid ""
-"\n"
-"\n"
-"All data on this USB stick will be lost."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
-msgid "Delete All Data and Install"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
-#, python-format
-msgid "%(description)s%(delete_message)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
-msgid "Confirm the target USB stick"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
-msgid ""
-"The selected file is unreadable. Please fix its permissions or select "
-"another file."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
-msgid ""
-"Unable to use the selected file. You may have better luck if you move your "
-"ISO to the root of your drive (ie: C:\\)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
-#, python-format
-msgid "%(filename)s selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
-msgid "Unable to find Tails on ISO"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
-#, python-format
-msgid "Could not guess underlying block device: %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.\n"
-"%(out)s\n"
-"%(err)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
-#, python-format
-msgid "\"%s\" does not exist"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
-#, python-format
-msgid "\"%s\" is not a directory"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
-#, python-format
-msgid "Skipping \"%(filename)s\""
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.%(out)s\n"
-"%(err)s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
-msgid "Could not open device for writing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:17
-#, sh-format
-msgid ""
-"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
-"\n"
-"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
-"\n"
-"<i>${filename}</i>\n"
-"\n"
-"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
-"\n"
-"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:28
-msgid "Rename"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:30
-msgid "Keep current name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:94
-msgid "Persistence wizard - Persistent volume creation"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:97
-msgid "Choose a passphrase to protect the persistent volume"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:100
-#, perl-brace-format
-msgid ""
-"A {size} persistent volume will be created on the <b>{vendor} {model}</b> "
-"device. Data on this volume will be stored in an encrypted form protected by"
-" a passphrase."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:105
-msgid "Create"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:148
-msgid ""
-"<b>Beware!</b> Using persistence has consequences that must be well "
-"understood. Tails can't help you if you use it wrong! See the <i>Encrypted "
-"persistence</i> page of the Tails documentation to learn more."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:175
-msgid "Passphrase:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:181
-msgid "Verify Passphrase:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:191
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:259
-msgid "Passphrase can't be empty"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:226
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:326
-msgid "Show Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:250
-msgid "Passphrases do not match"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:305
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:178
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:101
-msgid "Failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:313
-msgid "Mounting Tails persistence partition."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:316
-msgid "The Tails persistence partition will be mounted."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:325
-msgid "Correcting permissions of the persistent volume."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:328
-msgid "The permissions of the persistent volume will be corrected."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:336
-msgid "Creating default persistence configuration."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:339
-msgid "The default persistence configuration will be created."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:353
-msgid "Creating..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:355
-msgid "Creating the persistent volume..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:86
-msgid "Persistence wizard - Persistent volume configuration"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:89
-msgid "Specify the files that will be saved in the persistent volume"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:92
-#, perl-brace-format
-msgid ""
-"The selected files will be stored in the encrypted partition {partition} "
-"({size}), on the <b>{vendor} {model}</b> device."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:98
-msgid "Save"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:191
-msgid "Saving..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:193
-msgid "Saving persistence configuration..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:51
-msgid "Persistence wizard - Persistent volume deletion"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:54
-msgid "Your persistent data will be deleted."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:58
-#, perl-brace-format
-msgid ""
-"The persistent volume {partition} ({size}), on the <b>{vendor} {model}</b> "
-"device, will be deleted."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
-msgid "Delete"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:114
-msgid "Deleting..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:116
-msgid "Deleting the persistent volume..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:53
-msgid "Personal Data"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55
-msgid "Keep files stored in the `Persistent' directory"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:68
-msgid "Welcome Screen"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70
-msgid "Language, administration password, and additional settings"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:83
-msgid "Tor Bridge"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85
-msgid "Save the last bridge that you used to connect to Tor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:98
-msgid "Browser Bookmarks"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100
-msgid "Bookmarks saved in the Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:113
-msgid "Network Connections"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:115
-msgid "Configuration of network devices and connections"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:130
-msgid "Software installed when starting Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:148
-msgid "Printers"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150
-msgid "Printers configuration"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:163
-msgid "Thunderbird"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165
-msgid "Thunderbird emails, feeds, and OpenPGP keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:178
-msgid "GnuPG"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180
-msgid "OpenPGP keys outside of Thunderbird"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:193
-msgid "Bitcoin Client"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195
-msgid "Electrum's bitcoin wallet and configuration"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:208
-msgid "Pidgin"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210
-msgid "Pidgin profiles and OTR keyring"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:223
-msgid "SSH Client"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:225
-msgid "SSH keys, configuration and known hosts"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:238
-msgid "Dotfiles"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:240
-msgid "Symlink every file in the Dotfiles folder into the Home folder"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:111
-msgid "Custom"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:295
-msgid "Setup Tails persistent volume"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:374
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:502
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:26
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:342
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:481
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:901
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401
-msgid "Device already has a persistent volume."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:408
-msgid "Device has not enough unallocated space."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:414
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:427
-msgid "Device has no persistent volume."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:420
-msgid ""
-"Cannot delete the persistent volume while in use. You should restart Tails "
-"without persistence."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:432
-msgid "Persistence volume is not unlocked."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:436
-msgid "Persistence volume is not mounted."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:441
-msgid "Persistence volume is not readable. Permissions or ownership problems?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:446
-msgid "Persistence volume is not writable."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:455
-msgid "Tails is running from non-USB / non-SDIO device."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:460
-msgid "Device is optical."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:467
-msgid "Device was not created using a USB image or Tails Installer."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:709
-msgid "Persistence wizard - Finished"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:712
-msgid ""
-"Any changes you have made will only take effect after restarting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:722
-msgid "Restart Now"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
-msgid "su is disabled. Please use sudo instead."
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-msgid ""
-"The device Tails is running from cannot be found. Maybe you used the 'toram'"
-" option?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
-msgid ""
-"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
-"option?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
-msgid "Import Failed"
-msgstr ""
-
-#. Translators: Don't translate {path} or {error},
-#. they are placeholders and will be replaced.
-#. They need to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:46
-#, python-brace-format
-msgid ""
-"Failed to import keys from {path}:\n"
-"{error}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:54
-msgid "Key Imported"
-msgid_plural "Keys Imported"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#. Translators: Don't translate {uids}, it's a placeholder and
-#. will be replaced. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:57
-#, python-brace-format
-msgid "Imported a key for {uids}"
-msgid_plural "Imported keys for {uids}"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Lock screen"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
-msgid "Suspend"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
-msgid "Power Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:22
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
-msgid "Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:35
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:36
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-msgstr ""
-
-#. Translators: Don't translate {details}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
-#, python-brace-format
-msgid ""
-"{details} Please check your list of additional software or read the system "
-"log to understand the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
-msgid ""
-"Please check your list of additional software or read the system log to "
-"understand the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Show Log"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Configure"
-msgstr ""
-
-#. Translators: Don't translate {beginning} or {last}, they are
-#. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
-#, python-brace-format
-msgid "{beginning} and {last}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
-msgid ", "
-msgstr ""
-
-#. Translators: Don't translate {packages}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:290
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#, python-brace-format
-msgid "Add {packages} to your additional software?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-msgid ""
-"To install it automatically from your persistent storage when starting "
-"Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-msgid "Install Every Time"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-msgid "Install Only Once"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
-msgid "The configuration of your additional software failed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
-msgid ""
-"To install it automatically when starting Tails, you can create a persistent"
-" storage and activate the <b>Additional Software</b> feature."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Create Persistent Storage"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
-msgid "Creating your persistent storage failed."
-msgstr ""
-
-#. Translators: Don't translate {packages}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
-#, python-brace-format
-msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
-msgid "To do so, you need to run Tails from a USB stick."
-msgstr ""
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr ""
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-msgid "Remove"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
-msgid "Installing your additional software from persistent storage..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
-msgid "This can take several minutes."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
-msgid "The installation of your additional software failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
-msgid "Additional software installed successfully"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
-msgid "The check for upgrades of your additional software failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
-msgid "The upgrade of your additional software failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-msgid "Documentation"
-msgstr ""
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
-#, python-brace-format
-msgid ""
-"Remove {package} from your additional software? This will stop installing "
-"the package automatically."
-msgstr ""
-
-#. Translators: Don't translate {pkg}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
-#, python-brace-format
-msgid "Failed to remove {pkg}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
-msgid "Failed to read additional software configuration"
-msgstr ""
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
-#, python-brace-format
-msgid "Stop installing {package} automatically"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
-msgid ""
-"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
-"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
-"command line</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
-msgid ""
-"To do so, unlock your persistent storage when starting Tails and install "
-"some software using <a href=\"synaptic.desktop\">Synaptic Package "
-"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
-"line</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
-msgid ""
-"To do so, create a persistent storage and install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
-msgid ""
-"To do so, install Tails on a USB stick and create a persistent storage."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251
-msgid "[package not available]"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
-msgid "Lock Screen"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
-msgid "Screen Locker"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
-msgid "Set up a password to unlock the screen."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2028
-msgid "Password"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
-msgid "Confirm"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:132
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
-#, sh-format
-msgid ""
-"MAC address anonymization failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC address anonymization."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
-#, sh-format
-msgid ""
-"MAC address anonymization failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
-"You might prefer to restart Tails and disable MAC address anonymization."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
-#, python-brace-format
-msgid ""
-"<b>Not enough memory available to check for upgrades.</b>\n"
-"\n"
-"Make sure this system satisfies the requirements for running Tails.\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-"\n"
-"Try to restart Tails to check for upgrades again.\n"
-"\n"
-"Or do a manual upgrade.\n"
-"See {manual_upgrade_url}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
-msgid "Warning: non-free virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails. Only free software can be considered "
-"trustworthy, for both the host operating system and the virtualization "
-"software."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
-msgid "Don't Show Again"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
-msgid "Learn More"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/config.py:8
-#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:1
-msgid "Tor Connection"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:198
-msgid "_Use a bridge that you already know"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:239
-msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">unlock you "
-"Persistent Storage</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:246
-msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">create a "
-"Persistent Storage</a> on your Tails USB stick."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:266
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:667
-#, python-brace-format
-msgid "Invalid: {exception}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:278
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:680
-msgid "You need to configure an obfs4 bridge to hide that you are using Tor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:326
-msgid "Failed to configure your Persistent Storage"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:420
-msgid "Connecting to Tor without bridges…"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:427
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
-msgid "Connecting to Tor with default bridges…"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:434
-msgid "Connecting to Tor with a custom bridge…"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:543
-msgid ""
-"Connected to Tor successfully!\n"
-"\n"
-"You can now browse the Internet anonymously and uncensored."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:670
-msgid "Bridge address malformed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:686
-msgid "Setting a bridge is needed if you want to hide that you are using Tor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:948
-msgid "Are you sure you want to lose progress?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:952
-msgid ""
-"Tails will continue connecting to Tor after you close the Tor Connection assistant.\n"
-"\n"
-"If connecting to Tor fails, you will have to wait again until the end of the progress bar to be able to troubleshoot your connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:41
-msgid "You need to migrate your OpenPGP keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:43
-msgid ""
-"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
-"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
-"<i>Thunderbird</i>, follow our migration instructions."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:45
-msgid "_Open Migration Instructions"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:46
-msgid "_Migrate Later"
-msgstr ""
-
-#: config/chroot_local-includes/usr/bin/tor-browser:46
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/bin/tor-browser:47
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/bin/tor-browser:48
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1809
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
-msgid "Tor Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
-msgid "Open Onion Circuits"
-msgstr ""
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
-#, python-brace-format
-msgid "{volume_label} ({volume_size})"
-msgstr ""
-
-#. Translators: Don't translate {partition_name} or {partition_size},
-#. they are placeholders and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
-#, python-brace-format
-msgid "{partition_name} ({partition_size})"
-msgstr ""
-
-#. Translators: Don't translate {volume_size}, it's a placeholder
-#. and will be replaced. It needs to be present in the translated
-#. string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr ""
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
-#, python-brace-format
-msgid "{volume_name} (Read-Only)"
-msgstr ""
-
-#. Translators: Don't translate {partition_name} and {container_path}, they
-#. are placeholders and will be replaced. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
-#, python-brace-format
-msgid "{partition_name} in {container_path}"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} and {path_to_file_container},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
-#, python-brace-format
-msgid "{volume_name} – {path_to_file_container}"
-msgstr ""
-
-#. Translators: Don't translate {partition_name} and {drive_name}, they
-#. are placeholders and will be replaced. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
-#, python-brace-format
-msgid "{partition_name} on {drive_name}"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} and {drive_name},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
-msgid "Wrong passphrase or parameters"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
-msgid "Error unlocking volume"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
-msgid "One or more applications are keeping the volume busy."
-msgstr ""
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
-#, python-brace-format
-msgid ""
-"Couldn't lock volume {volume_name}:\n"
-"{error_message}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
-msgid "Locking the volume failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
-#, python-format
-msgid "The file container %s should already be listed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
-msgid "Container opened read-only"
-msgstr ""
-
-#. Translators: Don't translate {path}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
-#, python-brace-format
-msgid ""
-"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
-"{error_message}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
-msgid "Not a VeraCrypt container"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
-#, python-format
-msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-msgid "Failed to add container"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
-#, python-format
-msgid ""
-"Could not add file container %s: Timeout while waiting for loop setup.\n"
-"Please try using the <i>Disks</i> application instead."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
-msgid "Launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:39
-msgid ""
-"The Unsafe Browser is not anonymous and the websites that you visit can see "
-"your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to a "
-"network using a captive portal."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
-msgid ""
-"The Unsafe Browser was not enabled in the Welcome Screen.\\n\\nTo <a "
-"href='file:///usr/share/doc/tails/website/doc/anonymous_internet/unsafe_browser.en.html#use'>use"
-" the Unsafe Browser</a>, restart Tails and enable the Unsafe Browser in the "
-"additional settings of the Welcome Screen."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid ""
-"\\n\\nTo always enable the Unsafe Browser, turn on the Welcome Screen "
-"feature of the Persistent Storage."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
-msgid "_Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:62
-msgid "_Close"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
-msgid "Failed to restart the system."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:77
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:78
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:85
-msgid ""
-"This may take a while, and you may not restart the Unsafe Browser until it "
-"is properly shut down."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:98
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:107
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:115
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
-msgid "Failed to configure browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:128
-msgid ""
-"You are not connected to a local network yet.\\n\\nTo be able to start the "
-"Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
-"network."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:144
-msgid "Failed to run browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:41
-#, python-format
-msgid ""
-"The %s variable was not found in any of the configuration files "
-"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:114
-msgid "Name of the affected software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:116
-msgid "Exact steps to reproduce the error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:118
-msgid "Actual result and description of the error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:120
-msgid "Desired result"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:133
-msgid "Unable to load a valid configuration."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
-msgid "Sending mail..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:171
-msgid "Sending mail"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:173
-msgid "This could take a while..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:189
-msgid "The contact email address doesn't seem valid."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:206
-msgid "Unable to send the mail: SMTP error."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:208
-msgid "Unable to connect to the server."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:210
-msgid "Unable to create or to send the mail."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:213
-msgid ""
-"\n"
-"\n"
-"The bug report could not be sent, likely due to network problems. Please try to reconnect to the network and click send again.\n"
-"\n"
-"If it does not work, you will be offered to save the bug report."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:226
-msgid "Your message has been sent."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:233
-msgid "An error occured during encryption."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:253
-#, python-format
-msgid "Unable to save %s."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:276
-#, python-format
-msgid ""
-"The bug report could not be sent, likely due to network problems.\n"
-"\n"
-"As a work-around you can save the bug report as a file on a USB drive and try to send it to us at %s from your email account using another system. Note that your bug report will not be anonymous when doing so unless you take further steps yourself (e.g. using Tor with a throw-away email account).\n"
-"\n"
-"Do you want to save the bug report to a file?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
-msgid "WhisperBack"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:339
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
-msgid "Send feedback in an encrypted mail."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
-msgid "Copyright © 2009-2018 Tails developers (tails(a)boum.org)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
-msgid "Tails developers <tails(a)boum.org>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:344
-msgid "translator-credits"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:377
-msgid "This doesn't seem to be a valid URL or OpenPGP key."
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:63
-#, python-format
-msgid "Invalid contact email: %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:83
-#, python-format
-msgid "Invalid contact OpenPGP key: %s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:85
-msgid "Invalid contact OpenPGP public key block"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tca:156
-msgid "You turned on Offline Mode in the Welcome Screen."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tca:157
-msgid "It is impossible to connect to Tor in Offline Mode."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tca:158
-msgid ""
-"To connect to Tor and the Internet, restart Tails without Offline Mode."
-msgstr ""
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr ""
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
-msgid "Tails documentation"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
-msgid "Root Terminal"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
-msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
-msgid "Install, clone, upgrade Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1
-msgid "Delete persistent volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2
-msgid "Delete the persistent volume and its content"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1
-msgid "Configure persistent volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2
-msgid ""
-"Configure which files and application configuration are saved between "
-"working sessions"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:2
-msgid "Connect Tails to the Tor network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
-msgid "Browse the World Wide Web without anonymity"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
-msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
-msgid ""
-"Configure the additional software installed from your persistent storage "
-"when starting Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
-msgid "WhisperBack Error Reporting"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
-msgid "Send feedback via encrypted e-mail"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
-msgid "feedback;bug;report;tails;error;"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
-msgid "To start a Root Terminal, you need to authenticate."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
-msgid "Remove an additional software package"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
-msgid ""
-"Authentication is required to remove a package from your additional software"
-" ($(command_line))"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:625
-msgid "Administration Password"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
-msgid ""
-"Set up an administration password if you need to perform administrative "
-"tasks. Otherwise, the administration password is disabled for better "
-"security."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
-msgid "Enter an administration password"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
-msgid "Confirm your administration password"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
-msgid "Disable"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:629
-msgid "MAC Address Anonymization"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
-msgid ""
-"MAC address anonymization hides the serial number of your network interface "
-"(Wi-Fi or wired) from the local network. Anonymizing MAC addresses is "
-"generally safer as it helps you hide your geographical location. But it "
-"might also create connectivity problems or look suspicious."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
-msgid "Anonymize all MAC addresses (default)"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
-msgid "Don't anonymize MAC addresses"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:633
-msgid "Network Configuration"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
-msgid ""
-"We replaced this additional setting in Tails 4.19 (June 2021) with a Tor Connection assistant integrated in the desktop.\n"
-"\n"
-"You will be asked whether you want to use Tor bridges when connecting to Tor after starting Tails.\n"
-"\n"
-"If you want to work offline, enable the Offline Mode in the additional settings."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
-msgid "Offline Mode"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:373
-msgid ""
-"If you want to work completely offline, you can disable all networking for "
-"increased security."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
-msgid ""
-"The Unsafe Browser allows you to sign in to a network using a captive portal.\n"
-"\n"
-"A captive portal is a web page that is displayed before you can access the Internet. Captive portals usually require you to log in to the network or enter information such as an email address.\n"
-"\n"
-"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to sign in to networks."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:574
-msgid "Disable the Unsafe Browser (default)"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:619
-msgid "Enable the Unsafe Browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
-msgid "Settings were loaded from the persistent storage."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
-msgid "Welcome to Tails!"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-msgid "Language & Region"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:222
-msgid "Default Settings"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:285
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#. The label for this placeholder text is not very big, so keep this string
-#. short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:427
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:465
-msgid "_Additional Settings"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:548
-msgid "Add an additional setting"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:597
-msgid ""
-"The default settings are safe in most situations. To add a custom setting, "
-"press the \"+\" button below."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:641
-msgid "Shutdown"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:652
-msgid "_Start Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
-msgid "File Containers"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
-msgid "_Add"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
-msgid "Add a file container"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
-msgid "Partitions and Drives"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
-msgid ""
-"This application is not affiliated with or endorsed by the VeraCrypt project"
-" or IDRIX."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
-msgid "_Open"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
-msgid "Lock this volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
-msgid "_Unlock"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
-msgid "Detach this volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
-msgid "Target USB stick:"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
-msgid "Reinstall (delete all data)"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
-msgid "Copyright © 2009-2018 tails(a)boum.org"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
-msgid ""
-"WhisperBack - Send feedback in an encrypted mail\n"
-"Copyright (C) 2009-2018 Tails developers <tails(a)boum.org>\n"
-"\n"
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 3 of the License, or (at\n"
-"your option) any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful, but\n"
-"WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
-"General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
-msgid ""
-"If you want us to encrypt messages when we respond to you, add your key ID, "
-"a link to your key, or the key as a public key block:"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
-msgid "Summary"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:485
-msgid "Bug description"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
-msgid "Help:"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
-msgid "Read our bug reporting guidelines."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
-msgid "Email address (if you want an answer from us)"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
-msgid "optional PGP key"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:470
-msgid "Please know that we are not able to reply to every bug report."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:502
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:613
-msgid "Technical details to include"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:540
-msgid "headers"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:588
-msgid "debugging info"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
-msgid "Send"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
-msgid "TrueCrypt/VeraCrypt container"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:21
-msgid "image"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:70
-msgid "Configure a Tor bridge"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:76
-msgid "heading"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:94
-msgid ""
-"Bridges are secret Tor relays. Use a bridge as your first Tor relay if "
-"accessing Tor is blocked from where you are."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:110
-msgid "<a href=\"doc/anonymous_internet/tor\">Learn more about Tor bridges</a>"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:146
-msgid "Use a _default bridge"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:170
-msgid "obfs4 (recommended)"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:171
-msgid "meek"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:197
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1323
-msgid "None"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:225
-msgid "_Request a new bridge"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:260
-msgid "_Enter a bridge that you already know"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:283
-msgid ""
-"To request a bridge, you can send an empty email to\n"
-"<tt>bridges(a)torproject.org</tt> from a Gmail or Riseup email address.\n"
-"\n"
-"For example, you can send the email from your phone and type the bridge in Tails.\n"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:370
-msgid "Save bridge to _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:395
-msgid "Save bridge to Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:396
-msgid "toggle-button"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:536
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:963
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1361
-msgid "_Connect to Tor"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:581
-msgid "Error connecting to Tor"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:608
-msgid "• Wrong clock"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:628
-msgid "Your clock and time zone need to be correct to connect to Tor."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:641
-msgid "Fix _Clock"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:678
-msgid "• Public network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:698
-msgid ""
-"If you are in a shop, hotel, or airport, you might need to sign in to the "
-"local network using a captive portal."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:711
-msgid "Try _Signing in to the Network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:749
-msgid "• Local proxy"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
-msgid ""
-"If you are on a corporate or university network, you might need to configure"
-" a local proxy."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:782
-msgid "Configure a Local _Proxy"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:820
-msgid "• Bridge over email"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
-msgid ""
-"To request new Tor bridges, you can also:\n"
-"\n"
-" 1. Send an empty email to <tt>bridges(a)torproject.org</tt> from a Gmail or Riseup email address.\n"
-"\n"
-" 2. Type below one of the bridges that you received by email."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:950
-msgid ""
-"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Troubleshooting "
-"connecting to Tor</a>"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:996
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1404
-msgid ""
-"Everything you do on the Internet from Tails goes through the Tor network."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1010
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1419
-msgid ""
-"Tor encrypts and anonymizes your connection by passing it through 3 relays.\n"
-"Tor relays are servers operated by different organizations and volunteers around the world."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1046
-msgid "<b>Connect to Tor _automatically (easier)</b>"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1096
-msgid ""
-"We recommend connecting to Tor automatically if you are on a public Wi-Fi "
-"network or if many people in your country use Tor to circumvent censorship."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1114
-msgid ""
-"Tails will try different ways of connecting to Tor until it succeeds.\n"
-"\n"
-"Someone monitoring your Internet connection could identify these attempts as coming from a Tails user."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1148
-msgid "Configure a Tor _bridge"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1194
-msgid ""
-"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if connections to Tor are blocked, for example in some countries, by some public networks, or by some parental controls.\n"
-"\n"
-"Choose this option if you already know that you need a bridge. Otherwise, Tails will autodetect whether you need a bridge to connect to Tor from your local network."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1236
-msgid "<b>_Hide to my local network that I'm connecting to Tor (safer)</b>"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1286
-msgid ""
-"You might need to go unnoticed if using Tor could look suspicious to someone"
-" who monitors your Internet connection."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1304
-msgid ""
-"Tails will only connect to Tor after you configured a Tor bridge. Bridges are secret Tor relays that hide that you are connecting to Tor.\n"
-"\n"
-"Our team is doing its best to help you connect to Tor using the most discrete types of Tor bridges.\n"
-"\n"
-"You will have to do extra configuration if you don't know any Tor bridges yet, if you connect from a public Wi-Fi network, or if you are in the Eastern Hemisphere."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1349
-msgid ""
-"<a href=\"doc/anonymous_internet/tor\">Learn more about how Tails connects "
-"to Tor</a>"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1434
-msgid "Connect to a local network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1451
-msgid ""
-"You are not connected to a local network yet. To be able to connect to the "
-"Tor network, you first need to connect to a Wi-Fi, wire, or mobile network."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1463
-msgid "Open Wi-Fi settings"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1512
-msgid "Testing Internet access…"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1552
-msgid "You have access to the Internet"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1586
-msgid "Testing access to Tor…"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1629
-msgid "You can connect to Tor"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1659
-msgid "Failed to connect to Tor without bridges."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1675
-msgid "Your local network is blocking access to Tor."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1707
-msgid "Connecting to Tor…"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1763
-msgid "Connected to Tor successfully"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1787
-msgid "You can now browse the Internet anonymously and uncensored."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1828
-msgid "Open Network Monitor"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1841
-msgid "View Tor Circuits"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1855
-msgid "Reset Tor Connection"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1895
-msgid "Configure a Local Proxy"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1920
-msgid "Proxy Type"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1937
-msgid "No proxy"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1938
-msgid "SOCKS 4"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1939
-msgid "SOCKS 5"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1940
-msgid "HTTP / HTTPS"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1959
-msgid "Address"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1976
-msgid "Username"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1993
-msgid "IP address or hostname"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2011
-msgid "Port"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2120
-msgid "_Save Proxy Settings"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:7
-msgid "Tor Connection - Fix Clock"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:76
-msgid ""
-"Your time zone cannot be used to identify or locate you. Your time zone will"
-" never be sent over the network and will only be used to fix your clock and "
-"connect to Tor."
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:142
-msgid "Time zone"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:186
-msgid "Time"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:223
-msgid ":"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:277
-msgid "Date"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:311
-msgid "January"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:312
-msgid "February"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:313
-msgid "March"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:314
-msgid "April"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:315
-msgid "May"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:316
-msgid "June"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:317
-msgid "July"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:318
-msgid "August"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:319
-msgid "September"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:320
-msgid "October"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:321
-msgid "November"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:322
-msgid "December"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:368
-msgid "Clock"
-msgstr ""
1
0

[translation/tbmanual-contentspot] new translations in tbmanual-contentspot
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit 2123313a6fbacb2fefad73907cd3826391580bc3
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 18:46:48 2021 +0000
new translations in tbmanual-contentspot
---
contents+zh-TW.po | 41 ++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index 3ee69056f7..f4debfa505 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -150,7 +150,7 @@ msgstr "訂閱電子報"
#: (dynamic)
msgid "Get monthly updates and opportunities from the Tor Project:"
-msgstr "取得 Tor 專案每月的更新訊息與機會:"
+msgstr "取得洋蔥路由專案計畫的每月更新與機會訊息:"
#: (dynamic)
msgid "Sign up"
@@ -388,7 +388,8 @@ msgstr "如何下載洋蔥路由瀏覽器"
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 專案官方網站下載 https://www.torproject.org/download"
+msgstr ""
+"下載洋蔥路由瀏覽器最安全簡單的方法,是從洋蔥路由專案計畫的官方網站下載 https://www.torproject.org/download"
#: https//tb-manual.torproject.org/downloading/
#: (content/downloading/contents+en.lrtopic.body)
@@ -414,7 +415,7 @@ msgstr "如果發生這種狀況,您可以利用下方任一替代方案來下
#: https//tb-manual.torproject.org/downloading/
#: (content/downloading/contents+en.lrtopic.body)
msgid "### MIRRORS"
-msgstr "### 鏡像"
+msgstr "### 鏡像站台"
#: https//tb-manual.torproject.org/downloading/
#: (content/downloading/contents+en.lrtopic.body)
@@ -693,15 +694,15 @@ msgid ""
"executable. From within this directory run: `chmod +x start-tor-"
"browser.desktop`"
msgstr ""
-"**注意:** 如果您的指令執行失敗,可能是因為沒有將該檔案標記可執行權限。請在該目錄中執行:chmod +x start-tor-"
-"browser.desktop"
+"**注意:** 如果您的指令執行失敗,可能是因為沒有將該檔案標記可執行權限。請在該目錄中執行:`chmod +x start-tor-"
+"browser.desktop`"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
msgid ""
"Some additional flags that can be used with `start-tor-browser.desktop` from"
" the command-line:"
-msgstr "針對「start-tor-browser.desktop」檔案,可以在命令列中追加幾個參數:"
+msgstr "針對`start-tor-browser.desktop`檔案,可以在命令列的指令中追加幾個參數:"
#: https//tb-manual.torproject.org/installation/
#: (content/installation/contents+en.lrtopic.body)
@@ -1416,7 +1417,7 @@ msgid ""
"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位址和實際地理位置,當您寄送電子郵件時也是同樣的情況。然而,當您透過洋蔥路由瀏覽器來登入您的社群網站或電子郵件帳號,您可以選擇要透露哪些個人資訊給您所瀏覽的網站。且當您所使用的網路環境針對該些網站實施封鎖時,使用洋蔥路由瀏覽器也可幫助您連上該網站。"
+"當您透過普通的網路瀏覽器來登入某個網站時,此過程中也會同時透露出您的IP位址和實際地理位置,當您寄送電子郵件時也是同樣的情況。然而,當您透過洋蔥路由瀏覽器來登入您的社群網站或電子郵件帳號,您可以選擇要透露哪些個人資訊給您所瀏覽的網站。且當您所使用的網路環境針對該些網站實施封鎖時,使用洋蔥路由瀏覽器也可幫助您突破封鎖連上線。"
#: https//tb-manual.torproject.org/managing-identities/
#: (content/managing-identities/contents+en.lrtopic.body)
@@ -1442,8 +1443,8 @@ msgid ""
"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)
@@ -3728,51 +3729,51 @@ msgstr ""
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
msgid "MAKE TOR BROWSER PORTABLE"
-msgstr ""
+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 ""
+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 ""
+msgstr "如果有需要的話,洋蔥路由瀏覽器也可以被安裝在像是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 ""
+msgstr "若要這麼做的話,建議使用可以寫入資料的儲存設備,以便讓洋蔥路由瀏覽器可以隨時更新版本。"
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.body)
msgid "For Windows:"
-msgstr ""
+msgstr "在Windows系統上:"
#: 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 ""
+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 ""
+msgstr "2. 前往洋蔥路由瀏覽器的[下載頁面](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 ""
+msgstr "3. 下載Windows版的.exe執行檔並直接儲存至該設備中。"
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.body)
@@ -3780,20 +3781,22 @@ 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 ""
+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 ""
+msgstr "6. 在安裝過程中,將洋蔥路由瀏覽器的安裝位置選擇指向您的可移除式儲存設備。"
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.body)
1
0

[translation/support-portal] new translations in support-portal
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit da155c1b9d5a51ceac36763cdf5657868ca05eb8
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 18:17:43 2021 +0000
new translations in support-portal
---
contents+zh-TW.po | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index 873b2eb01e..8bb6994132 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -6332,6 +6332,8 @@ 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//support.torproject.org/tormobile/tormobile-3/
#: (content/tormobile/tormobile-3/contents+en.lrquestion.description)
@@ -6339,6 +6341,8 @@ msgid ""
"Download Onion Browser from the [App "
"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
msgstr ""
+"從 [App Store](https://itunes.apple.com/us/app/onion-"
+"browser/id519296448)下載Onion Browser。"
#: https//support.torproject.org/tormobile/tormobile-4/
#: (content/tormobile/tormobile-4/contents+en.lrquestion.title)
1
0

[translation/tbmanual-contentspot_completed] new translations in tbmanual-contentspot_completed
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit 5b4c115daa4eb3c005f4f5c256b0e8bca10b1da0
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 18:16:50 2021 +0000
new translations in tbmanual-contentspot_completed
---
contents+zh-TW.po | 3611 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 3611 insertions(+)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
new file mode 100644
index 0000000000..304dd297ea
--- /dev/null
+++ b/contents+zh-TW.po
@@ -0,0 +1,3611 @@
+#
+# Translators:
+# Hsiu-Ming Chang <cges30901(a)gmail.com>, 2019
+# 男孩不壞, 2019
+# ian chou <ertiach(a)hotmail.com>, 2019
+# Bryce Tsao <tsaodingtw(a)gmail.com>, 2020
+# Anaïs Huang <1299820931(a)qq.com>, 2020
+# 孟邦 王, 2021
+# erinm, 2021
+# 揚鈞 蘇 <tukishimaaoba(a)gmail.com>, 2021
+# Emma Peel, 2021
+# Agustín Wu <losangwuyts(a)gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2021-12-08 15:23+UTC\n"
+"PO-Revision-Date: 2018-11-14 12:31+0000\n"
+"Last-Translator: Agustín Wu <losangwuyts(a)gmail.com>, 2021\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"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: (dynamic)
+msgid ""
+"Defend yourself against tracking and surveillance. Circumvent censorship."
+msgstr ""
+
+#: (dynamic)
+msgid "Tor Project | Tor Browser Manual"
+msgstr ""
+
+#: (dynamic)
+msgid "Close banner"
+msgstr ""
+
+#: (dynamic)
+msgid "Privacy is a human right"
+msgstr ""
+
+#: (dynamic)
+msgid "Thank you for helping us reach our $150,000 Friends of Tor match!"
+msgstr ""
+
+#: (dynamic)
+msgid "Your donation will be matched by Friends of Tor, up to $100,000."
+msgstr ""
+
+#: (dynamic)
+msgid "Donate now"
+msgstr ""
+
+#: (dynamic)
+msgid "Donate"
+msgstr ""
+
+#: (dynamic)
+msgid "Donate Now"
+msgstr ""
+
+#: (dynamic)
+msgid "Menu"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "About"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Support"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Community"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Blog"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Documentation"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "PrivChat"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Jobs"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Contact"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Press"
+msgstr ""
+
+#: (dynamic)
+msgid "Download Tor Browser"
+msgstr ""
+
+#: (dynamic)
+msgid "Search"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/
+#: (content/contents+en.lrshowcase.title)
+msgid "Tor Browser User Manual"
+msgstr ""
+
+#: (dynamic)
+msgid ""
+"Download Tor Browser to experience real private browsing without tracking, "
+"surveillance, or censorship."
+msgstr ""
+
+#: (dynamic)
+msgid "Our mission:"
+msgstr ""
+
+#: (dynamic)
+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 ""
+
+#: (dynamic)
+msgid "Subscribe to our Newsletter"
+msgstr ""
+
+#: (dynamic)
+msgid "Get monthly updates and opportunities from the Tor Project:"
+msgstr ""
+
+#: (dynamic)
+msgid "Sign up"
+msgstr ""
+
+#: (dynamic)
+msgid ""
+"Trademark, copyright notices, and rules for use by third parties can be "
+"found in our %(link_to_faq)s"
+msgstr ""
+
+#: (dynamic)
+msgid "Topics"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "About Tor Browser"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Downloading"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Installation"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Running Tor Browser for the First Time"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Circumvention"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Bridges"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Managing Identities"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Secure Connections"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Security Settings"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Plugins"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Updating"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Onion Services"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Uninstalling"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Making Tor Browser Portable"
+msgstr ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Troubleshooting"
+msgstr ""
+
+#: (dynamic) 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 ""
+
+#: (dynamic) https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Mobile Tor"
+msgstr ""
+
+#: (dynamic)
+msgid "Contributors to this page:"
+msgstr ""
+
+#: (dynamic)
+msgid "Edit this page"
+msgstr ""
+
+#: (dynamic)
+msgid "Give Feedback"
+msgstr ""
+
+#: (dynamic)
+msgid "Permalink"
+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 "Pluggable transports"
+msgstr ""
+
+#: https//tb-manual.torproject.org/menu/
+#: (content/menu/contents+en.lrtopic.body)
+msgid "Becoming a Tor Translator"
+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](https://gettor.torproject.org/) 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@torproject.org](mailto:gettor@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 ""
+"You can also add a language code to get Tor Browser on a language different "
+"than English."
+msgstr ""
+
+#: https//tb-manual.torproject.org/downloading/
+#: (content/downloading/contents+en.lrtopic.body)
+msgid ""
+"For example, to get links for downloading Tor Browser in Chinese (China) for"
+" Windows, send an email to "
+"[gettor@torproject.org](mailto:gettor@torproject.org) with the words "
+"\"windows zh_CN\" in it."
+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/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)
+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)
+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)
+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. Now follow either the graphical or the command-line method:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "#### Graphical method"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"* When the download is complete, extract the archive using an archive "
+"manager."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"* You'll need to tell your GNU/Linux that you want the ability to execute "
+"shell scripts."
+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 ""
+"<img style=\"max-width:50%\" class=\"col-md-6\" "
+"src=\"../../static/images/linux-make-desktop-file-executable.png\" "
+"alt=\"Make the .desktop file executable in Linux\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"**Note:** On Ubuntu and some other distros if you try to launch `start-tor-"
+"browser.desktop` a text file might open up."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "To change this behavior and launch Tor Browser instead, follow this:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "* Launch \"Files\" (GNOME Files/Nautilus)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "* Click on Preferences."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "* Navigate to the 'Behavior' Tab."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "* Select \"Run them\" or \"Ask what to do\" under \"Executable Text Files\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"* If you choose the latter click on \"Run\" after launching the `start-tor-"
+"browser.desktop` file."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:50%\" class=\"col-md-6\" "
+"src=\"../../static/images/linux-change-behavior-executable-files.png\" "
+"alt=\"Change behavior of executable text file to always run in Linux\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "#### Command-line method"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"* When the download is complete, extract the archive with the command `tar "
+"-xf [TB archive]`."
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"* From inside the Tor Browser directory, you can launch Tor Browser by "
+"running:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "`./start-tor-browser.desktop`"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"**Note:** If this command fails to run, you probably need to make the file "
+"executable. From within this directory run: `chmod +x start-tor-"
+"browser.desktop`"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"Some additional flags that can be used with `start-tor-browser.desktop` from"
+" the command-line:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "| **Flag** | **Description** |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "|----------|-----------------|"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"| `--register-app` | To register Tor Browser as a desktop application. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "| `--verbose` | To display Tor and Firefox output in the terminal. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"| `--log [file]` | To record Tor and Firefox output in file (default: tor-"
+"browser.log). |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"| `--detach` | To detach from terminal and run Tor Browser in the "
+"background. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid ""
+"| `--unregister-app` | To unregister Tor Browser as a desktop application. "
+"|"
+msgstr ""
+
+#: https//tb-manual.torproject.org/installation/
+#: (content/installation/contents+en.lrtopic.body)
+msgid "See here on how to [update Tor Browser](../updating/)."
+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 Connect to Tor"
+" 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 either 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 ""
+"There's a checkbox which asks whether you always want to get automatically "
+"connected to the Tor network, if this is the case, check the box."
+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)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/connect.png\" alt=\"Click "
+"'connect' to connect to Tor.\">"
+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."
+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 ""
+"Or, if you know that your connection is censored or uses a proxy, you should"
+" click on \"Tor Network Settings\"."
+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\" "
+"alt=\"Click 'Tor Network Settings' to adjust network settings.\">"
+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)
+#: 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 ""
+"The first checkbox is Quickstart. If selected, every time you open Tor "
+"Browser, it will try to connect with your previous network settings."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The second checkbox asks if you want to use a bridge. 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 \"Use a bridge\"."
+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\" "
+"alt=\"Configure Tor bridge options\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"This will display the [Circumvention](../circumvention) section to configure"
+" a pluggable transport or to connect using [Bridges](../bridges)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid "### OTHER OPTIONS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"The third checkbox asks if your connection uses a proxy. In most cases, this"
+" is not necessary. You will usually know if you need to select 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/running-tor-browser/
+#: (content/running-tor-browser/contents+en.lrtopic.body)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/proxy.png\" "
+"alt=\"Configure proxy options\">"
+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 predecessors, 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 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 \"Tor Network Settings\" when starting "
+"Tor Browser for the first time."
+msgstr ""
+
+#: https//tb-manual.torproject.org/circumvention/
+#: (content/circumvention/contents+en.lrtopic.body)
+msgid ""
+"Under the \"Bridges\" section, select the checkbox \"Use a bridge\" and "
+"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, scroll up and 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\" (or "
+"\"Options\" on Windows) in the [hamburger menu "
+"(≡)](https://support.torproject.org/glossary/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, select 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)
+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 Bridge'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, 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 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](../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 conceal 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/](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@torproject.org](mailto:bridges@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 \"Tor Network "
+"Settings\" to open the Tor settings window."
+msgstr ""
+
+#: https//tb-manual.torproject.org/bridges/
+#: (content/bridges/contents+en.lrtopic.body)
+msgid ""
+"Under the \"Bridges\" section, select the checkbox \"Use a bridge\", then "
+"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 ""
+"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 ""
+"In the \"Bridges\" section, select 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)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/request-a-bridge.png\" "
+"alt=\"Request a bridge from torproject.org\">"
+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 ""
+"Under the \"Bridges\" section, select the checkbox \"Use a bridge\", 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 the \"Bridges\" section, select 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)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/tor-launcher-custom-"
+"bridges.png\" alt=\"Enter custom bridge addresses\">"
+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\" alt=\"Display circuit diagram "
+"under the site information menu\">"
+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 style=\"max-width:100%\" class=\"col-md-6\" "
+"src=\"../../static/images/new_identity.png\" alt=\"New Identity and New Tor "
+"Circuit options under main menu\">"
+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. They are also located in the hamburger or main 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 ""
+"* Onion services’ location and IP address are hidden, making it difficult "
+"for adversaries to censor them or identify their 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 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 "
+"in the URL bar an icon of an onion displaying the state of your connection: "
+"secure and using an onion service."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"You can learn more about the onion site that you are visiting by looking at "
+"the Circuit Display."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Another way to learn about an onion site is if the website administrator has"
+" implemented a feature called Onion-Location."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Onion-Location is a non-standard HTTP header that websites can use to "
+"advertise their onion counterpart."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"If the website that you are visiting has an onion site available, a purple "
+"suggestion pill will prompt at the URL bar in Tor Browser displaying "
+"\".onion available\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"When you click on \".onion available\", the website will be reloaded and "
+"redirected to its onion counterpart."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:100%\" class=\"col-md-6\" "
+"src=\"../../static/images/onion-location.png\" alt=\"Onion-Location\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"To prioritize an onion site version of a website, you can enable automatic "
+"Onion-Location redirects."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Click on hamburger menu (≡), go to Preferences (or Options on Windows), "
+"click on Privacy & Security, and in the Onion Services section look for the "
+"entry \"Prioritize .onion sites when known.\" and check the option "
+"\"Always\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Or, if you're already running Tor Browser, you can copy and paste this "
+"string in a new tab: `about:preferences#privacy` and change this setting."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid "## ONION SERVICE AUTHENTICATION"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"An authenticated onion service is a service like an onion site that requires"
+" the client to provide an authentication token before accessing the service."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"As a Tor user, you may authenticate yourself directly in the Tor Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"In order to access this service, you will need access credentials from the "
+"onion service operator."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"When accessing an authenticated onion service, Tor Browser will show in the "
+"URL bar an icon of a little gray key, accompanied by a tooltip."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid "Enter your valid private key into the input field."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"<img class=\"col-md-6\" src=\"../../static/images/client-auth.png\" "
+"alt=\"Client Authorization\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid "### ONION SERVICES ERRORS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"If you can't connect to an onion site, Tor Browser will provide a specific "
+"error message informing why the website is unavailable."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Errors can happen in different layers: client errors, network errors or "
+"service errors."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"Some of these errors can be fixed by following the Troubleshooting section."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"The table below shows all the possible errors and which action you should "
+"take to solve the issue."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid "| **Code** | **Error Title** | **Short Description** |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid "|----------|-----------------|-----------------------|"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF0 | Onion site Not Found | The most likely cause is that the onion site "
+"is offline or disabled. Contact the onion site administrator. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF1 | Onion site Cannot Be Reached | The onion site is unreachable due to "
+"an internal error. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF2 | Onion site Has Disconnected | The most likely cause is that the "
+"onion site is offline or disabled. Contact the onion site administrator. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF3 | Unable to Connect to Onion site | The onion site is busy or the Tor "
+"network is overloaded. Try again later. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF4 | Onion site Requires Authentication | Access to the onion site "
+"requires a key but none was provided. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF5 | Onion site Authentication Failed | The provided key is incorrect or "
+"has been revoked. Contact the onion site administrator. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF6 | Invalid Onion site Address | The provided onion site address is "
+"invalid. Please check that you entered it correctly. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"| XF7 | Onion site Circuit Creation Timed Out | Failed to connect to the "
+"onion site, possibly due to a poor network connection. |"
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/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 requested, 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 after verifying the "
+"address, 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 ""
+"If the onion service you are trying to access consists of a string of 16 "
+"characters (V2 format), this type of address is [being "
+"deprecated](https://support.torproject.org/onionservices/v2-deprecation/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/onion-services/
+#: (content/onion-services/contents+en.lrtopic.body)
+msgid ""
+"You can also test if you are able to access other onion services by "
+"connecting to [DuckDuckGo's Onion "
+"Service](https://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion/)."
+msgstr ""
+
+#: (dynamic)
+msgid ""
+"The following visualization shows what information is visible to "
+"eavesdroppers with and without Tor Browser and HTTPS encryption:"
+msgstr ""
+
+#: (dynamic)
+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 ""
+
+#: (dynamic)
+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 ""
+
+#: (dynamic)
+msgid ""
+"When both buttons are green, you see the data that is visible to observers "
+"when you are using both tools."
+msgstr ""
+
+#: (dynamic)
+msgid ""
+"When both buttons are grey, you see the data that is visible to observers "
+"when you don't use either tool."
+msgstr ""
+
+#: (dynamic)
+msgid "HTTPS"
+msgstr ""
+
+#: (dynamic)
+msgid "Tor"
+msgstr ""
+
+#: (dynamic)
+msgid "POTENTIALLY VISIBLE DATA"
+msgstr ""
+
+#: (dynamic)
+msgid "Site.com"
+msgstr ""
+
+#: (dynamic)
+msgid "The site being visited."
+msgstr ""
+
+#: (dynamic)
+msgid "user / pw"
+msgstr ""
+
+#: (dynamic)
+msgid "Username and password used for authentication."
+msgstr ""
+
+#: (dynamic)
+msgid "data"
+msgstr ""
+
+#: (dynamic)
+msgid "Data being transmitted."
+msgstr ""
+
+#: (dynamic)
+msgid "location"
+msgstr ""
+
+#: (dynamic)
+msgid ""
+"Network location of the computer used to visit the website (the public IP "
+"address)."
+msgstr ""
+
+#: (dynamic)
+msgid "Whether or not Tor is being used."
+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 compromise 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 style=\"max-width:100%\" class=\"col-lg-6\" "
+"src=\"../../static/images/security-settings-anim.gif\" alt=\"Click on "
+"'Advanced Security Settings' under the shield menu.\">"
+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 style=\"max-width:100%\" class=\"col-lg-6\" "
+"src=\"../../static/images/security-settings-safest.png\" alt=\"Security "
+"Level is currently set to Standard.\">"
+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/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 ""
+"<img class=\"col-md-6\" src=\"../../static/images/connect.png\" alt=\"Click "
+"'Connect' to connect to Tor.\">"
+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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "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 or instance of 'Tor' is not already running "
+"on your system."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"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 ""
+"* If Tor Browser was working before and is not working now your system may "
+"have been hibernating."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "A reboot of your system will solve the issue."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "* Delete Tor Browser and install it again."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"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 "### VIEW TOR LOGS"
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"In most cases, taking a look at the Tor logs can be helpful in diagnosing "
+"the issue."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"If you’re having trouble connecting, an error message may appear and you can"
+" select the option to \"copy Tor log to clipboard\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "Then paste the Tor log into a text file or other document."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"If you don't see this option and you have Tor Browser open, you can navigate"
+" to the hamburger menu (\"≡\"), then click on \"Preferences\", and finally "
+"on \"Tor\" in the side bar."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"At the bottom of the page, next to the \"View the Tor logs\" text, click the"
+" button \"View Logs...\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"Alternatively, on GNU/Linux, to view the logs right in the terminal, "
+"navigate to the Tor Browser directory and launch the Tor Browser from the "
+"command line by running:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "`./start-tor-browser.desktop --verbose`"
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "Or to save the logs to a file (default: tor-browser.log):"
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid "`./start-tor-browser.desktop --log [file]`"
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"More information on this can be found on the [Support "
+"Portal](https://support.torproject.org/connecting/connecting-2/)."
+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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"Read the [Circumvention](/circumvention) section for possible solutions."
+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 ""
+
+#: 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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/troubleshooting/
+#: (content/troubleshooting/contents+en.lrtopic.body)
+msgid ""
+"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/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)
+#: 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 "
+"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 hamburger menu (main menu) will display a green circle "
+"with an upwards facing arrow in it, 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\" alt=\"Select "
+"'Restart to update Tor Browser' under the main menu\"/>"
+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\" alt=\"Update "
+"progress bar\"/>"
+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/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\" (or \"Options\" on Windows) on the [hamburger menu "
+"(≡)](https://support.torproject.org/glossary/hamburger-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 ""
+"* Antivirus or malware protection blocking users from accessing Tor Browser."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"Sometimes these also pop up with [false positives regarding malware and/or "
+"vulnerabilities](https://support.torproject.org/tbb/antivirus-false-"
+"positive/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"You can read more about this on our [Support "
+"Portal](https://support.torproject.org/tbb/tbb-10/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"The following antivirus and 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 "* Avast Antivirus"
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid "* VPNs also tend to interfere with Tor and need to be disabled."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"We also do not recommend using VPN and Tor together unless you're an "
+"advanced user who knows how to configure both in a way that doesn't "
+"compromise your privacy."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"You can find more detailed information about Tor + VPN at our "
+"[wiki](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/TorPlusVPN)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid "* Videos that require Adobe Flash are unavailable."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid "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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid "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 ""
+"* Issues with making Tor Browser as your [default "
+"browser](https://support.torproject.org/tbb/tbb-32/)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"* If Tor Browser was working before and is not working now (especially after"
+" a re-install or an update), your system may have been hibernating."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid "A reboot of your system, in that case, will solve the issue."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"* Tor won't start on Windows when the [folder path contains non-ascii "
+"characters](https://gitlab.torproject.org/tpo/core/tor/-/issues/10416)."
+msgstr ""
+
+#: https//tb-manual.torproject.org/known-issues/
+#: (content/known-issues/contents+en.lrtopic.body)
+msgid ""
+"* BitTorrent [is not anonymous over "
+"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.title)
+msgid "MOBILE TOR"
+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 tapped, 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](../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 will tell you about the status of the Tor Network and "
+"provide you the option to configure a Bridge ('Config Bridge')."
+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, tap on "
+"'Config Bridge'."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"You will then be taken to the [Circumvention](../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, tap 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 tells you about the status of the Tor network. Tap on "
+"'Config Bridge' to configure a bridge."
+msgstr ""
+
+#: https//tb-manual.torproject.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 \"Use a Bridge\" option, you will have three options: \"obfs4\", "
+"\"meek-azure\", and \"snowflake\"."
+msgstr ""
+
+#: https//tb-manual.torproject.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](../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 device's notification "
+"panel after expanding it along with the button \"NEW IDENTITY\"."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "Tapping 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](../security-settings/) disable certain web features that"
+" can be used to compromise 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 i.e. Standard, Safer or Safest."
+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 ""
+"Tap 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 tap 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 "Tap 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 tap 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 tap 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 ""
+"Tap 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 tap 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 tap on the \"Uninstall\" button."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "#### View Tor Logs"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"<img style=\"max-width:300px\" class=\"img-fluid\" "
+"src=\"../../static/images/android-view-logs.gif\" alt=\"View Tor logs on Tor"
+" Browser for Android\">"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "To view your Tor logs:"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid "1. Launch Tor Browser for Android and tap 'Connect'."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"2. During the bootstrapping process, swipe right to left to view the logs. "
+"(Note: By default, the ability to take screenshots of the Tor logs is "
+"disabled on Tor Browser for Android. [Bug "
+"#40191](https://bugs.torproject.org/tpo/applications/fenix/40191))"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"To troubleshoot some of the most common issues please refer to the [Support "
+"Portal entry](https://support.torproject.org/connecting/connecting-2/)."
+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://gitlab.torproject.org/tpo/applications/torbutton/-/issues/25764)"
+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://gitlab.torproject.org/tpo/applications/tor-"
+"browser/-/issues/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://gitlab.torproject.org/tpo/applications/tor-"
+"browser/-/issues/27987)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't upload files with Tor Browser for Android. "
+"[#40283](https://gitlab.torproject.org/tpo/applications/tor-"
+"browser/-/issues/40283)"
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"* You can't open onion addresses that requires Client Authorization "
+"[#31672](https://gitlab.torproject.org/tpo/applications/tor-"
+"browser/-/issues/31672)"
+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 continuously improved and became a popular "
+"way for people to browse the internet with more privacy 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 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."
+msgstr ""
+
+#: https//tb-manual.torproject.org/mobile-tor/
+#: (content/mobile-tor/contents+en.lrtopic.body)
+msgid ""
+"Then you can use it with other apps installed on your mobile device to "
+"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 older Windows "
+"Phones but in case of the newer Microsoft-branded/promoted phones, same "
+"steps on [Tor Browser on Android](#tor-browser-for-android) can be followed."
+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 "For Windows:"
+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 "For macOS:"
+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 "For GNU/Linux:"
+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 ""
1
0

[translation/tbmanual-contentspot] new translations in tbmanual-contentspot
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit ac87b8ff0ff9552c3ab514e5d062b65e7356adfd
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 18:16:46 2021 +0000
new translations in tbmanual-contentspot
---
contents+zh-TW.po | 56 +++++++++++++++++++++++++++++++++++++++++--------------
1 file changed, 42 insertions(+), 14 deletions(-)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index f6e39042ec..3ee69056f7 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -2833,7 +2833,7 @@ msgstr "安卓版的洋蔥路由瀏覽器是唯一一套由Tor專案官方所開
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"It is like the desktop Tor Browser, but for your Android mobile device."
-msgstr "就跟桌面版的洋蔥路由瀏覽器相同,但是可以在安卓系統的行動運算裝置上執行。"
+msgstr "就跟電腦版的洋蔥路由瀏覽器相同,但是可以在安卓系統的行動運算裝置上執行。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3222,7 +3222,7 @@ 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 "與桌面版的洋蔥路由瀏覽器不同的地方在於,安卓版的「新識別身份」功能並不會中斷您已經連上的網站活動。"
+msgstr "與電腦版的洋蔥路由瀏覽器不同的地方在於,安卓版的「新識別身份」功能並不會中斷您已經連上的網站活動。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3257,7 +3257,7 @@ msgstr "[安全性設定](../security-settings)會藉由停用部份的網頁功
msgid ""
"Tor Browser for Android provides the same three security levels that are "
"available on desktop."
-msgstr "安卓版的洋蔥路由瀏覽器與桌面版一樣,提供了三個不同的安全性等級供您選擇。"
+msgstr "安卓版的洋蔥路由瀏覽器與電腦版一樣,提供了三個不同的安全性等級供您選擇。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3507,7 +3507,7 @@ msgstr "查閱您的洋蔥路由歷程紀錄:"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "1. Launch Tor Browser for Android and tap 'Connect'."
-msgstr ""
+msgstr "1. 啟動安卓版的洋蔥路由瀏覽器並點擊「連線」。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3517,6 +3517,8 @@ msgid ""
"disabled on Tor Browser for Android. [Bug "
"#40191](https://bugs.torproject.org/tpo/applications/fenix/40191))"
msgstr ""
+"2. 在啟動的過程中,向左滑動畫面即可查閱歷程紀錄。(註:在安卓版洋蔥路由瀏覽器中,針對歷程紀錄的螢幕截圖功能預設是停用的。[Bug "
+"#40191](https://bugs.torproject.org/tpo/applications/fenix/40191))"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3524,13 +3526,14 @@ msgid ""
"To troubleshoot some of the most common issues please refer to the [Support "
"Portal entry](https://support.torproject.org/connecting/connecting-2/)."
msgstr ""
+"若需要排除一些常見的故障,請前往[技術支援入口網](https://support.torproject.org/connecting/connect…"
#: 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 ""
+msgstr "現階段有某些在電腦版洋蔥路由瀏覽器中的功能,在安卓版中仍未提供。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3538,6 +3541,8 @@ msgid ""
"* You can't see your Tor circuit. "
"[#25764](https://gitlab.torproject.org/tpo/applications/torbutton/-/issues/25764)"
msgstr ""
+"* "
+"無法查看您的洋蔥路由迴路。[#25764](https://gitlab.torproject.org/tpo/applications/torbut…"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3546,6 +3551,9 @@ msgid ""
"[#31814](https://gitlab.torproject.org/tpo/applications/tor-"
"browser/-/issues/31814)"
msgstr ""
+"* "
+"安卓版洋蔥路由瀏覽器移至SD記憶卡中後,無法建立連線。[#31814](https://gitlab.torproject.org/tpo/appli…"
+"browser/-/issues/31814)"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3554,6 +3562,9 @@ msgid ""
"[#27987](https://gitlab.torproject.org/tpo/applications/tor-"
"browser/-/issues/27987)"
msgstr ""
+"* "
+"安卓版洋蔥路由瀏覽器無法使用螢幕截圖功能。[#27987](https://gitlab.torproject.org/tpo/application…"
+"browser/-/issues/27987)"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3562,6 +3573,9 @@ msgid ""
"[#40283](https://gitlab.torproject.org/tpo/applications/tor-"
"browser/-/issues/40283)"
msgstr ""
+"* "
+"安卓版洋蔥路由瀏覽器無法上傳檔案。[#40283](https://gitlab.torproject.org/tpo/applications/to…"
+"browser/-/issues/40283)"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3570,23 +3584,26 @@ msgid ""
"[#31672](https://gitlab.torproject.org/tpo/applications/tor-"
"browser/-/issues/31672)"
msgstr ""
+"* "
+"無法開啟需要客戶端認證的洋蔥服務位址。[#31672](https://gitlab.torproject.org/tpo/applications/…"
+"browser/-/issues/31672)"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### More about Tor on mobile devices"
-msgstr ""
+msgstr "### 更多關於行動運算裝置上的洋蔥路由"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "#### Orfox"
-msgstr ""
+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 ""
+msgstr "最初 Orfox 是在西元2015年時由保衛者專案計畫所發布的軟體,其目的是要讓安卓系統的使用者能夠透過洋蔥路由來上網。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3595,7 +3612,7 @@ msgid ""
"way for people to browse the internet with more privacy than standard "
"browsers, and Orfox was crucial for helping people circumvent censorship and"
" access blocked sites and critical resources."
-msgstr ""
+msgstr "再發佈後的三年時間裡,Orfox不斷地持續改良與強化,後來逐漸成為相當普遍的隱私瀏覽軟體,並且能夠有效地幫助使用者突破網路審查封鎖。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3604,29 +3621,31 @@ msgid ""
"tor-browser-android) after the official Tor Browser for Android was "
"released."
msgstr ""
+"在西元2019年時,隨著洋蔥路由專案計畫釋出了安卓版的洋蔥路由瀏覽器後,Orfox隨即成為了[日落專案](https://blog.torprojec…"
+"paved-way-tor-browser-android)。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "#### Orbot"
-msgstr ""
+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 ""
+msgstr "Orbot是一個自由的代理伺服器軟體,其他應用程式可以借助此軟體連接上洋蔥路由網路。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "Orbot uses Tor to encrypt your Internet traffic."
-msgstr ""
+msgstr "Orbot使用洋蔥路由來對網路連線資料進行加密。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid ""
"Then you can use it with other apps installed on your mobile device to "
"circumvent censorship and protect against surveillance."
-msgstr ""
+msgstr "因此您可以利用此軟體來協助其他已經安裝在您的行動運算裝置上的應用程式,藉以突破網路審查的封鎖,並且對抗網路監控機制。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3634,6 +3653,8 @@ msgid ""
"Orbot can be downloaded and installed from [Google "
"Play](https://play.google.com/store/apps/details?id=org.torproject.android)."
msgstr ""
+"您可以從 [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)
@@ -3642,6 +3663,7 @@ msgid ""
"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://support.torproject.org/tormobile/tormobile-6/)以確認您是…"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3676,6 +3698,8 @@ 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)
@@ -3683,11 +3707,13 @@ msgid ""
"Download Onion Browser from the [App "
"Store](https://itunes.apple.com/us/app/onion-browser/id519296448)."
msgstr ""
+"從 [App Store](https://itunes.apple.com/us/app/onion-"
+"browser/id519296448)下載Onion Browser。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### Tor Browser for Windows Phone"
-msgstr ""
+msgstr "### WIndows Phone 的洋蔥路由瀏覽器"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3696,6 +3722,8 @@ msgid ""
"Phones but in case of the newer Microsoft-branded/promoted phones, same "
"steps on [Tor Browser on Android](#tor-browser-for-android) can be followed."
msgstr ""
+"目前針對較舊型號的Windows Phone仍無法執行洋蔥路由,但對於較新的機種,也可以參考[安卓版洋蔥路由瀏覽器](#tor-browser-for-"
+"android)的步驟來安裝使用。"
#: https//tb-manual.torproject.org/make-tor-portable/
#: (content/make-tor-portable/contents+en.lrtopic.title)
1
0

[translation/tbmanual-contentspot] new translations in tbmanual-contentspot
by translation@torproject.org 22 Dec '21
by translation@torproject.org 22 Dec '21
22 Dec '21
commit fc0e40cf4df40df63d6ad751e5ac13ee3e3b1ab4
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 17:46:49 2021 +0000
new translations in tbmanual-contentspot
---
contents+zh-TW.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contents+zh-TW.po b/contents+zh-TW.po
index ef91467a57..f6e39042ec 100644
--- a/contents+zh-TW.po
+++ b/contents+zh-TW.po
@@ -3481,7 +3481,7 @@ msgstr ""
msgid ""
"Depending on your mobile device's brand, navigate to Settings > Apps, then "
"select Tor Browser and tap on the \"Uninstall\" button."
-msgstr ""
+msgstr "隨著您的行動運算裝置廠牌不同可能有所差異,通常可以在「設定」→「應用程式」裡找到洋蔥路由瀏覽器,再點擊「移除」按鈕。"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3646,7 +3646,7 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### Tor Browser for iOS"
-msgstr ""
+msgstr "### iOS 版的洋蔥路由瀏覽器"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
1
0

22 Dec '21
commit 4d96b05aaafe98c35afb63bbf7d82b51d4abbe96
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Dec 22 17:17:22 2021 +0000
new translations in torcheck
---
zh_TW/torcheck.po | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/zh_TW/torcheck.po b/zh_TW/torcheck.po
index c680d9c1ba..a0b7038f21 100644
--- a/zh_TW/torcheck.po
+++ b/zh_TW/torcheck.po
@@ -2,7 +2,7 @@
# Copyright (C) 2008-2013 The Tor Project, Inc
#
# Translators:
-# Agustín Wu <losangwuyts(a)gmail.com>, 2016
+# Agustín Wu <losangwuyts(a)gmail.com>, 2016,2021
# Hsiu-Ming Chang <cges30901(a)gmail.com>, 2014
# Chinrur Yang <chinrur(a)gmail.com>, 2013
# Chinrur Yang <chinrur(a)gmail.com>, 2013
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"POT-Creation-Date: 2012-02-16 20:28+PDT\n"
-"PO-Revision-Date: 2019-04-13 15:12+0000\n"
-"Last-Translator: Hsiu-Ming Chang <cges30901(a)gmail.com>\n"
+"PO-Revision-Date: 2021-12-22 17:09+0000\n"
+"Last-Translator: Agustín Wu <losangwuyts(a)gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,7 +31,7 @@ msgid ""
"Please refer to the <a href=\"https://www.torproject.org/\">Tor website</a> "
"for further information about using Tor safely. You are now free to browse "
"the Internet anonymously."
-msgstr "請參閱<a href=\"https://www.torproject.org/\">Tor 網站</a>有關安全使用洋蔥路由的進一步資訊。您現在是以匿名方式瀏覽網際網路。"
+msgstr "請參閱<a href=\"https://www.torproject.org/\">洋蔥路由網站</a>有關安全使用洋蔥路由的進一步資訊,您現在是以匿名方式瀏覽網際網路。"
msgid "There is a security update available for Tor Browser."
msgstr "有可取得的洋蔥路由瀏覽器安全性更新"
1
0