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
August 2018
- 17 participants
- 2581 discussions
commit ed6d7dfd5a02c1af624eb69235c8e02a4a74e68f
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu Aug 2 21:16:21 2018 +0200
Add change log entry for #26963.
---
CHANGELOG.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f3428c1..9f3a958 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@
- Add new "as_name" parameter to search relays by AS name.
- Support a comma-separated list of AS numbers in the "as"
parameter.
+ - Fix a thread-safety bug in the recently extended reverse DNS
+ lookup code.
* Minor changes
- Extend internal statistics to log less frequently requested
1
0
commit 2b6916bdc0249d129b5aa08ab84e20e892ad7ad5
Author: Iain R. Learmonth <irl(a)fsfe.org>
Date: Tue Jul 31 14:50:42 2018 +0100
Stop sharing the JNDI DirContext
In the implementation of more accurate DNS resolution, the DirContext
used by JNDI lookups was shared in a utility class. It turns out that
InitialDirContext, the implementation we used, is very not thread-safe
and so as a result lookups would often fail to complete.
This commit creates a new DirContext for every lookup. The overhead in
doing so is minimal and ensures that we do not have thread safety
issues.
This commit also increases RDNS_LOOKUP_WORKERS_NUM to 30 (from 5). The
majority of time in these threads is spent waiting for replies and so
there are gains to be had in increasing the number of requests in
flight.
Fixes: #26963
---
.../onionoo/updater/RdnsLookupRequest.java | 48 ++++++++++++----
.../onionoo/updater/RdnsLookupWorker.java | 2 +-
.../onionoo/updater/ReverseDomainNameResolver.java | 10 +---
.../torproject/onionoo/util/DomainNameSystem.java | 66 ----------------------
4 files changed, 38 insertions(+), 88 deletions(-)
diff --git a/src/main/java/org/torproject/onionoo/updater/RdnsLookupRequest.java b/src/main/java/org/torproject/onionoo/updater/RdnsLookupRequest.java
index 7f14350..3859262 100644
--- a/src/main/java/org/torproject/onionoo/updater/RdnsLookupRequest.java
+++ b/src/main/java/org/torproject/onionoo/updater/RdnsLookupRequest.java
@@ -3,19 +3,22 @@
package org.torproject.onionoo.updater;
-import org.torproject.onionoo.util.DomainNameSystem;
-
import java.util.ArrayList;
+import java.util.Hashtable;
import java.util.List;
+import java.util.Set;
+import java.util.TreeSet;
+import javax.naming.Context;
+import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
+import javax.naming.directory.Attribute;
+import javax.naming.directory.Attributes;
+import javax.naming.directory.DirContext;
+import javax.naming.directory.InitialDirContext;
class RdnsLookupRequest extends Thread {
- private ReverseDomainNameResolver reverseDomainNameResolver;
-
- private DomainNameSystem domainNameSystem;
-
private RdnsLookupWorker parent;
private String address;
@@ -29,11 +32,7 @@ class RdnsLookupRequest extends Thread {
private long lookupCompletedMillis = -1L;
public RdnsLookupRequest(
- ReverseDomainNameResolver reverseDomainNameResolver,
RdnsLookupWorker parent, String address) {
- this.reverseDomainNameResolver = reverseDomainNameResolver;
- this.domainNameSystem =
- this.reverseDomainNameResolver.getDomainNameSystemInstance();
this.parent = parent;
this.address = address;
}
@@ -51,11 +50,11 @@ class RdnsLookupRequest extends Thread {
+ "." + bytes[2] + "." + bytes[1] + "." + bytes[0]
+ ".in-addr.arpa";
String[] reverseDnsRecords =
- this.domainNameSystem.getRecords(reverseDnsDomain, "PTR");
+ this.getRecords(reverseDnsDomain, "PTR");
for (String reverseDnsRecord : reverseDnsRecords) {
boolean verified = false;
String[] forwardDnsRecords =
- this.domainNameSystem.getRecords(reverseDnsRecord, "A");
+ this.getRecords(reverseDnsRecord, "A");
for (String forwardDnsRecord : forwardDnsRecords) {
if (forwardDnsRecord.equals(this.address)) {
verified = true;
@@ -83,6 +82,31 @@ class RdnsLookupRequest extends Thread {
this.parent.interrupt();
}
+ /**
+ * Returns all the values of DNS resource records found for a given host name
+ * and type.
+ */
+ public String[] getRecords(String hostName, String type)
+ throws NamingException {
+ Hashtable<String, String> envProps = new Hashtable<>();
+ envProps.put(Context.INITIAL_CONTEXT_FACTORY,
+ "com.sun.jndi.dns.DnsContextFactory");
+ final DirContext dnsContext = new InitialDirContext(envProps);
+ Set<String> results = new TreeSet<String>();
+ Attributes dnsEntries =
+ dnsContext.getAttributes(hostName, new String[] { type });
+ if (dnsEntries != null) {
+ Attribute dnsAttribute = dnsEntries.get(type);
+ if (dnsAttribute != null) {
+ NamingEnumeration<?> dnsEntryIterator = dnsEntries.get(type).getAll();
+ while (dnsEntryIterator.hasMoreElements()) {
+ results.add(dnsEntryIterator.next().toString());
+ }
+ }
+ }
+ return results.toArray(new String[results.size()]);
+ }
+
public synchronized String getHostName() {
List<String> verifiedHostNames = this.verifiedHostNames;
if (null != verifiedHostNames && !verifiedHostNames.isEmpty() ) {
diff --git a/src/main/java/org/torproject/onionoo/updater/RdnsLookupWorker.java b/src/main/java/org/torproject/onionoo/updater/RdnsLookupWorker.java
index c94c334..953fdd2 100644
--- a/src/main/java/org/torproject/onionoo/updater/RdnsLookupWorker.java
+++ b/src/main/java/org/torproject/onionoo/updater/RdnsLookupWorker.java
@@ -30,7 +30,7 @@ class RdnsLookupWorker extends Thread {
break;
}
RdnsLookupRequest request = new RdnsLookupRequest(
- this.reverseDomainNameResolver, this, rdnsLookupJob);
+ this, rdnsLookupJob);
request.setDaemon(true);
request.start();
try {
diff --git a/src/main/java/org/torproject/onionoo/updater/ReverseDomainNameResolver.java b/src/main/java/org/torproject/onionoo/updater/ReverseDomainNameResolver.java
index 698b637..4022dab 100644
--- a/src/main/java/org/torproject/onionoo/updater/ReverseDomainNameResolver.java
+++ b/src/main/java/org/torproject/onionoo/updater/ReverseDomainNameResolver.java
@@ -3,7 +3,6 @@
package org.torproject.onionoo.updater;
-import org.torproject.onionoo.util.DomainNameSystem;
import org.torproject.onionoo.util.FormattingUtils;
import java.util.ArrayList;
@@ -23,9 +22,7 @@ public class ReverseDomainNameResolver {
private static final long RDNS_LOOKUP_MAX_AGE_MILLIS =
12L * 60L * 60L * 1000L;
- private static final int RDNS_LOOKUP_WORKERS_NUM = 5;
-
- private DomainNameSystem domainNameSystem;
+ private static final int RDNS_LOOKUP_WORKERS_NUM = 30;
private Map<String, Long> addressLastLookupTimes;
@@ -50,7 +47,6 @@ public class ReverseDomainNameResolver {
/** Starts reverse domain name lookups in one or more background
* threads and returns immediately. */
public void startReverseDomainNameLookups() {
- this.domainNameSystem = new DomainNameSystem();
this.startedRdnsLookups = System.currentTimeMillis();
this.rdnsLookupJobs = new HashSet<>();
for (Map.Entry<String, Long> e :
@@ -113,10 +109,6 @@ public class ReverseDomainNameResolver {
return this.startedRdnsLookups;
}
- public DomainNameSystem getDomainNameSystemInstance() {
- return this.domainNameSystem;
- }
-
/** Returns a string with the number of performed reverse domain name
* lookups and some simple statistics on lookup time. */
public String getStatsString() {
diff --git a/src/main/java/org/torproject/onionoo/util/DomainNameSystem.java b/src/main/java/org/torproject/onionoo/util/DomainNameSystem.java
deleted file mode 100644
index b085963..0000000
--- a/src/main/java/org/torproject/onionoo/util/DomainNameSystem.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/* Copyright 2018 The Tor Project
- * See LICENSE for licensing information */
-
-package org.torproject.onionoo.util;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.util.Hashtable;
-import java.util.Set;
-import java.util.TreeSet;
-
-import javax.naming.Context;
-import javax.naming.NamingEnumeration;
-import javax.naming.NamingException;
-import javax.naming.directory.Attribute;
-import javax.naming.directory.Attributes;
-import javax.naming.directory.DirContext;
-import javax.naming.directory.InitialDirContext;
-
-public class DomainNameSystem {
-
- private DirContext dnsContext;
- private Logger log;
-
- /** Creates a new instance. */
- public DomainNameSystem() {
- log = LoggerFactory.getLogger(DomainNameSystem.class);
- Hashtable<String, String> envProps = new Hashtable<>();
- envProps.put(Context.INITIAL_CONTEXT_FACTORY,
- "com.sun.jndi.dns.DnsContextFactory");
- try {
- dnsContext = new InitialDirContext(envProps);
- } catch (NamingException e) {
- log.error(
- "Unable to create directory context. "
- + "Host name lookup will be disabled!");
- }
- }
-
- /**
- * Returns all the values of DNS resource records found for a given host name
- * and type.
- */
- public String[] getRecords(String hostName, String type)
- throws NamingException {
- if (dnsContext == null) {
- /* Initial setup failed, so all lookups will fail. */
- throw new NamingException();
- }
- Set<String> results = new TreeSet<String>();
- Attributes dnsEntries =
- dnsContext.getAttributes(hostName, new String[] { type });
- if (dnsEntries != null) {
- Attribute dnsAttribute = dnsEntries.get(type);
- if (dnsAttribute != null) {
- NamingEnumeration<?> dnsEntryIterator = dnsEntries.get(type).getAll();
- while (dnsEntryIterator.hasMoreElements()) {
- results.add(dnsEntryIterator.next().toString());
- }
- }
- }
- return results.toArray(new String[results.size()]);
- }
-
-}
1
0

[translation/bridgedb] related to #12095 remove dead language teams, merge bn-bn_BD/af-af_AL before
by emmapeel@torproject.org 02 Aug '18
by emmapeel@torproject.org 02 Aug '18
02 Aug '18
commit 98135745510e69ba4063ebf338b46b6e7196eb6f
Author: emma peel <emma.peel(a)riseup.net>
Date: Thu Aug 2 12:20:58 2018 +0000
related to #12095 remove dead language teams, merge bn-bn_BD/af-af_AL before
---
af/LC_MESSAGES/bridgedb.po | 4 +-
af_ZA/LC_MESSAGES/bridgedb.po | 101 ----------
am_ET/LC_MESSAGES/bridgedb.po | 381 -----------------------------------
bn/LC_MESSAGES/bridgedb.po | 28 ++-
bn_BD/LC_MESSAGES/bridgedb.po | 381 -----------------------------------
cs_CZ/LC_MESSAGES/bridgedb.po | 380 ----------------------------------
es_NI/LC_MESSAGES/bridgedb.po | 100 ---------
si/LC_MESSAGES/bridgedb.po | 379 ----------------------------------
sq_AL/LC_MESSAGES/bridgedb.po | 380 ----------------------------------
zh/LC_MESSAGES/bridgedb.po | 100 ---------
zh_CN.GB2312/LC_MESSAGES/bridgedb.po | 100 ---------
11 files changed, 28 insertions(+), 2306 deletions(-)
diff --git a/af/LC_MESSAGES/bridgedb.po b/af/LC_MESSAGES/bridgedb.po
index c1283204f..24efaa7cd 100644
--- a/af/LC_MESSAGES/bridgedb.po
+++ b/af/LC_MESSAGES/bridgedb.po
@@ -251,7 +251,7 @@ msgstr ""
#: bridgedb/strings.py:101
msgid "What are bridges?"
-msgstr ""
+msgstr "Wat is Brûe?"
#: bridgedb/strings.py:102
#, python-format
@@ -260,7 +260,7 @@ msgstr ""
#: bridgedb/strings.py:107
msgid "I need an alternative way of getting bridges!"
-msgstr ""
+msgstr "Ek benodig 'n alternatiewe manier om brûe te bekom!"
#: bridgedb/strings.py:108
#, python-format
diff --git a/af_ZA/LC_MESSAGES/bridgedb.po b/af_ZA/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index 14de14a36..000000000
--- a/af_ZA/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,101 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2013 ORGANIZATION
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Translators:
-# Theron <thunderbird(a)breede.co.za>, 2014
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2013-03-27 21:41+0000\n"
-"PO-Revision-Date: 2014-03-13 13:01+0000\n"
-"Last-Translator: Theron <thunderbird(a)breede.co.za>\n"
-"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/torproject/language/af_ZA/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
-"Language: af_ZA\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: lib/bridgedb/templates/base.html:33
-msgid "What are bridges?"
-msgstr "Wat is Brûe?"
-
-#: lib/bridgedb/templates/base.html:34
-#, python-format
-msgid ""
-"%s Bridge relays %s are Tor relays that help you circumvent censorship."
-msgstr "%s Brug aflosse %s is Tor aflosse wat help om sensuur te omseil."
-
-#: lib/bridgedb/templates/base.html:39
-msgid "I need an alternative way of getting bridges!"
-msgstr "Ek benodig 'n alternatiewe manier om brûe te bekom!"
-
-#: lib/bridgedb/templates/base.html:40
-#, python-format
-msgid ""
-"Another way to find public bridge addresses is to send an email (from a %s "
-"or a %s address) to %s with the line 'get bridges' by itself in the body of "
-"the mail."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:48
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:49
-#, python-format
-msgid ""
-"If your Tor doesn't work, you should email %s. Try including as much info "
-"about your case as you can, including the list of bridges you used, the "
-"bundle filename/version you used, the messages that Tor gave out, etc."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:10
-msgid ""
-"To use the above lines, go to Vidalia's Network settings page, and click "
-"\"My ISP blocks connections to the Tor network\". Then add each bridge "
-"address one at a time."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:13
-msgid "No bridges currently available"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:6
-msgid "Upgrade your browser to Firefox"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:8
-msgid "Type the two words"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:6
-msgid "Step 1"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:8
-#, python-format
-msgid "Get %s Tor Browser Bundle %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:13
-msgid "Step 2"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:15
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:19
-msgid "Step 3"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:21
-#, python-format
-msgid "Now %s add the bridges to Tor %s"
-msgstr ""
diff --git a/am_ET/LC_MESSAGES/bridgedb.po b/am_ET/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index 64ad4c06a..000000000
--- a/am_ET/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,381 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2015 'The Tor Project, Inc.'
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Anteneh Tsegaye <tsegaye.anteneh(a)gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2015-11-07 03:44+0000\n"
-"Last-Translator: Anteneh Tsegaye <tsegaye.anteneh(a)gmail.com>\n"
-"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/otf/torproject/language/am_ET/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 1.3\n"
-"Language: am_ET\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANSLATORS: Please DO NOT translate the following words and/or phrases in
-#. any string (regardless of capitalization and/or punctuation):
-#. "BridgeDB"
-#. "pluggable transport"
-#. "pluggable transports"
-#. "obfs2"
-#. "obfs3"
-#. "scramblesuit"
-#. "fteproxy"
-#. "Tor"
-#. "Tor Browser"
-#: bridgedb/https/server.py:167
-msgid "Sorry! Something went wrong with your request."
-msgstr "ይቅርታ የጠየቁት መረጃ እክል ገጥሞታል"
-
-#: bridgedb/https/templates/base.html:79
-msgid "Report a Bug"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:82
-msgid "Source Code"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:85
-msgid "Changelog"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:88
-msgid "Contact"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:35
-msgid "Select All"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:40
-msgid "Show QRCode"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:52
-msgid "QRCode for your bridge lines"
-msgstr ""
-
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: bridgedb/https/templates/bridges.html:67
-#: bridgedb/https/templates/bridges.html:125
-msgid "Uh oh, spaghettios!"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:68
-msgid "It seems there was an error getting your QRCode."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:73
-msgid ""
-"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
-" your bridge lines onto mobile and other devices."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:131
-msgid "There currently aren't any bridges available..."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:132
-#, python-format
-msgid ""
-" Perhaps you should try %s going back %s and choosing a different bridge "
-"type!"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:11
-#, python-format
-msgid "Step %s1%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:13
-#, python-format
-msgid "Download %s Tor Browser %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:25
-#, python-format
-msgid "Step %s2%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:27
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:36
-#, python-format
-msgid "Step %s3%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:38
-#, python-format
-msgid "Now %s add the bridges to Tor Browser %s"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. (These are used to insert HTML5 underlining tags, to mark accesskeys
-#. for disabled users.)
-#: bridgedb/https/templates/options.html:38
-#, python-format
-msgid "%sJ%sust give me bridges!"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:51
-msgid "Advanced Options"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:86
-msgid "No"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:87
-msgid "none"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."
-#: bridgedb/https/templates/options.html:124
-#, python-format
-msgid "%sY%ses!"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Please do NOT translate the word "bridge"!
-#: bridgedb/https/templates/options.html:147
-#, python-format
-msgid "%sG%set Bridges"
-msgstr ""
-
-#: bridgedb/strings.py:43
-msgid "[This is an automated message; please do not reply.]"
-msgstr ""
-
-#: bridgedb/strings.py:45
-msgid "Here are your bridges:"
-msgstr ""
-
-#: bridgedb/strings.py:47
-#, python-format
-msgid ""
-"You have exceeded the rate limit. Please slow down! The minimum time between\n"
-"emails is %s hours. All further emails during this time period will be ignored."
-msgstr ""
-
-#: bridgedb/strings.py:50
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: bridgedb/strings.py:53
-msgid "Welcome to BridgeDB!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: bridgedb/strings.py:55
-msgid "Currently supported transport TYPEs:"
-msgstr ""
-
-#: bridgedb/strings.py:56
-#, python-format
-msgid "Hey, %s!"
-msgstr ""
-
-#: bridgedb/strings.py:57
-msgid "Hello, friend!"
-msgstr ""
-
-#: bridgedb/strings.py:58 bridgedb/https/templates/base.html:90
-msgid "Public Keys"
-msgstr ""
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: bridgedb/strings.py:62
-#, python-format
-msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: bridgedb/strings.py:72
-#, python-format
-msgid ""
-"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
-"which can help obfuscate your connections to the Tor Network, making it more\n"
-"difficult for anyone watching your internet traffic to determine that you are\n"
-"using Tor.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: bridgedb/strings.py:79
-msgid ""
-"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
-"Transports aren't IPv6 compatible.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: The phrase "plain-ol'-vanilla" means "plain, boring,
-#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
-#. which do not have Pluggable Transports, and only speak the regular,
-#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: bridgedb/strings.py:88
-#, python-format
-msgid ""
-"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
-"Pluggable Transports %s which maybe doesn't sound as cool, but they can still\n"
-"help to circumvent internet censorship in many cases.\n"
-"\n"
-msgstr ""
-
-#: bridgedb/strings.py:101
-msgid "What are bridges?"
-msgstr ""
-
-#: bridgedb/strings.py:102
-#, python-format
-msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: bridgedb/strings.py:107
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:108
-#, python-format
-msgid ""
-"Another way to get bridges is to send an email to %s. Please note that you must\n"
-"send the email using an address from one of the following email providers:\n"
-"%s, %s or %s."
-msgstr ""
-
-#: bridgedb/strings.py:115
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:117
-#, python-format
-msgid "If your Tor doesn't work, you should email %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:121
-msgid ""
-"Try including as much info about your case as you can, including the list of\n"
-"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
-"and any messages which Tor gave out, etc."
-msgstr ""
-
-#: bridgedb/strings.py:128
-msgid "Here are your bridge lines:"
-msgstr ""
-
-#: bridgedb/strings.py:129
-msgid "Get Bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:133
-msgid "Please select options for bridge type:"
-msgstr ""
-
-#: bridgedb/strings.py:134
-msgid "Do you need IPv6 addresses?"
-msgstr ""
-
-#: bridgedb/strings.py:135
-#, python-format
-msgid "Do you need a %s?"
-msgstr ""
-
-#: bridgedb/strings.py:139
-msgid "Your browser is not displaying images properly."
-msgstr ""
-
-#: bridgedb/strings.py:140
-msgid "Enter the characters from the image above..."
-msgstr ""
-
-#: bridgedb/strings.py:144
-msgid "How to start using your bridges"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: bridgedb/strings.py:146
-#, python-format
-msgid ""
-"To enter bridges into Tor Browser, first go to the %s Tor Browser download\n"
-"page %s and then follow the instructions there for downloading and starting\n"
-"Tor Browser."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:151
-msgid ""
-"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
-"the wizard until it asks:"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:155
-msgid ""
-"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
-"to the Tor network?"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:159
-msgid ""
-"Select 'Yes' and then click 'Next'. To configure your new bridges, copy and\n"
-"paste the bridge lines into the text input box. Finally, click 'Connect', and\n"
-"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
-"button in the 'Tor Network Settings' wizard for further assistance."
-msgstr ""
-
-#: bridgedb/strings.py:167
-msgid "Displays this message."
-msgstr ""
-
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: bridgedb/strings.py:171
-msgid "Request vanilla bridges."
-msgstr ""
-
-#: bridgedb/strings.py:172
-msgid "Request IPv6 bridges."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: bridgedb/strings.py:174
-msgid "Request a Pluggable Transport by TYPE."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: bridgedb/strings.py:177
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr ""
diff --git a/bn/LC_MESSAGES/bridgedb.po b/bn/LC_MESSAGES/bridgedb.po
index 8a57dc004..eec84c662 100644
--- a/bn/LC_MESSAGES/bridgedb.po
+++ b/bn/LC_MESSAGES/bridgedb.po
@@ -227,6 +227,10 @@ msgid ""
"using Tor.\n"
"\n"
msgstr ""
+"BridgeDB বিভিন্ন %s ধরনের প্ল্যাগেবল ট্রান্সপোর্ট %s সঙ্গে ব্রিজ প্রদান করতে পারেন,\n"
+"যা টর নেটওয়ার্ককে আপনার সংযোগগুলি অপ্রতিরোধ্য করতে সহায়তা করে, এটি আরও বেশি করে তৈরি করে\n"
+"যে কেউ আপনার ইন্টারনেট ট্র্যাফিকটি দেখে আপনার পক্ষে তা নির্ধারণ করা কঠিন\n"
+"টর ব্যবহার করে\n"
#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
#: bridgedb/strings.py:79
@@ -249,6 +253,9 @@ msgid ""
"help to circumvent internet censorship in many cases.\n"
"\n"
msgstr ""
+"উপরন্তু, ব্রিজডিবি এর মধ্যে প্রচুর প্লেইন-ভ্যালি-ভ্যানিলা ব্রিজ %s রয়েছে\n"
+"প্ল্যাগেবল ট্রান্সপোর্ট %s যা হয়তো ঠান্ডা বলে মনে করে না, তবে তারা এখনও করতে পারে\n"
+"অনেক ক্ষেত্রে ইন্টারনেট সেন্সরশিপকে বাধা দিতে সাহায্য\n"
#: bridgedb/strings.py:101
msgid "What are bridges?"
@@ -270,6 +277,9 @@ msgid ""
"send the email using an address from one of the following email providers:\n"
"%s, %s or %s."
msgstr ""
+"ব্রিজ পেতে আরেকটি উপায় হল %s থেকে একটি ইমেল পাঠানো। দয়া করে মনে রাখবেন যে আপনাকে অবশ্যই\n"
+"নিম্নোক্ত ইমেল প্রদানকারীদের মধ্যে একটি ঠিকানা ব্যবহার করে ইমেল পাঠাতে হবে: %s\n"
+", %s বা %s।"
#: bridgedb/strings.py:115
msgid "My bridges don't work! I need help!"
@@ -290,6 +300,9 @@ msgid ""
"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
"and any messages which Tor gave out, etc."
msgstr ""
+"তালিকাটি সহ আপনার কেস হিসাবে যতটা তথ্য অন্তর্ভুক্ত করার চেষ্টা করুন,\n"
+"সেতু এবং প্ল্যাগেবল ট্রান্সফর্মগুলি আপনি ব্যবহার করার চেষ্টা করেছেন, আপনার টর ব্রাউজারের সংস্করণ,\n"
+"এবং টর দিয়েছেন এমন কোন বার্তা ইত্যাদি।"
#: bridgedb/strings.py:128
msgid "Here are your bridge lines:"
@@ -332,6 +345,9 @@ msgid ""
"page %s and then follow the instructions there for downloading and starting\n"
"Tor Browser."
msgstr ""
+"টর ব্রাউজারে ব্রিজ প্রবেশ করতে, প্রথমে %s টর ব্রাউজার ডাউনলোড করুন\n"
+"পৃষ্ঠা %s এবং তারপর ডাউনলোড এবং শুরু করার জন্য সেখানে নির্দেশাবলী অনুসরণ করুন\n"
+"টর ব্রাউজার"
#. TRANSLATORS: Please DO NOT translate "Tor".
#: bridgedb/strings.py:151
@@ -339,6 +355,8 @@ msgid ""
"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
"the wizard until it asks:"
msgstr ""
+"যখন 'টর নেটওয়ার্ক সেটিংস' সংলাপ পপ আপ, 'কনফিগার' ক্লিক করুন এবং অনুসরণ করুন\n"
+"উইজার্ড যতক্ষণ না জিজ্ঞাসা করে:"
#. TRANSLATORS: Please DO NOT translate "Tor".
#: bridgedb/strings.py:155
@@ -346,6 +364,8 @@ msgid ""
"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
"to the Tor network?"
msgstr ""
+"আপনার ইন্টারনেট সার্ভিস প্রোভাইডার (আইএসপি) ব্লক বা অন্যথায় সংযোগ সেন্সর করে না\n"
+"টর নেটওয়ার্ক থেকে?"
#. TRANSLATORS: Please DO NOT translate "Tor".
#: bridgedb/strings.py:159
@@ -355,6 +375,10 @@ msgid ""
"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
"button in the 'Tor Network Settings' wizard for further assistance."
msgstr ""
+"'হ্যাঁ' নির্বাচন করুন এবং তারপর 'পরবর্তী' ক্লিক করুন আপনার নতুন সেতু কনফিগার করতে, কপি এবং\n"
+"টেক্সট ইনপুট বাক্সে সেতু লাইন আটকান। অবশেষে, 'সংযুক্ত' ক্লিক করুন, এবং\n"
+"আপনি যেতে ভাল হতে হবে! যদি আপনি সমস্যায় পড়েন তবে 'সহায়তা' ক্লিক করার চেষ্টা করুন\n"
+"আরও সহায়তা জন্য 'টর নেটওয়ার্ক সেটিংস' উইজার্ড মধ্যে বাটন"
#: bridgedb/strings.py:167
msgid "Displays this message."
@@ -374,10 +398,10 @@ msgstr "IPv6 ব্রিজের জন্য অনুরোধ"
#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
#: bridgedb/strings.py:174
msgid "Request a Pluggable Transport by TYPE."
-msgstr ""
+msgstr "TYPE দ্বারা প্ল্যাগেবল ট্রান্সপোর্টের অনুরোধ করুন"
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "GnuPG".
#: bridgedb/strings.py:177
msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr ""
+msgstr "BridgeDB এর সর্বজনীন GnuPG কীটির একটি অনুলিপি পান।"
diff --git a/bn_BD/LC_MESSAGES/bridgedb.po b/bn_BD/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index c9651c14e..000000000
--- a/bn_BD/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,381 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2015 'The Tor Project, Inc.'
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Al Shahrior <shahrior3814(a)gmail.com>, 2017
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2017-11-19 11:34+0000\n"
-"Last-Translator: Al Shahrior <shahrior3814(a)gmail.com>\n"
-"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/otf/torproject/language/bn_BD/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 1.3\n"
-"Language: bn_BD\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANSLATORS: Please DO NOT translate the following words and/or phrases in
-#. any string (regardless of capitalization and/or punctuation):
-#. "BridgeDB"
-#. "pluggable transport"
-#. "pluggable transports"
-#. "obfs2"
-#. "obfs3"
-#. "scramblesuit"
-#. "fteproxy"
-#. "Tor"
-#. "Tor Browser"
-#: bridgedb/https/server.py:167
-msgid "Sorry! Something went wrong with your request."
-msgstr "দুঃখিত! আপনার অনুরোধে কিছু ভুল হয়েছে।"
-
-#: bridgedb/https/templates/base.html:79
-msgid "Report a Bug"
-msgstr "একটি ত্রুটি রিপোর্ট করুন"
-
-#: bridgedb/https/templates/base.html:82
-msgid "Source Code"
-msgstr "সোর্স কোড"
-
-#: bridgedb/https/templates/base.html:85
-msgid "Changelog"
-msgstr "পরিবর্তণের"
-
-#: bridgedb/https/templates/base.html:88
-msgid "Contact"
-msgstr "যোগাযোগ"
-
-#: bridgedb/https/templates/bridges.html:35
-msgid "Select All"
-msgstr "সব নির্বাচন করুন"
-
-#: bridgedb/https/templates/bridges.html:40
-msgid "Show QRCode"
-msgstr "QR কোড দেখুন"
-
-#: bridgedb/https/templates/bridges.html:52
-msgid "QRCode for your bridge lines"
-msgstr "আপনার ব্রিজ লাইন জন্য QR কোড"
-
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: bridgedb/https/templates/bridges.html:67
-#: bridgedb/https/templates/bridges.html:125
-msgid "Uh oh, spaghettios!"
-msgstr "ওহ, স্প্যাগেটিস!"
-
-#: bridgedb/https/templates/bridges.html:68
-msgid "It seems there was an error getting your QRCode."
-msgstr "মনে হচ্ছে আপনার QR কোড পেতে একটি ত্রুটি ছিল।"
-
-#: bridgedb/https/templates/bridges.html:73
-msgid ""
-"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
-" your bridge lines onto mobile and other devices."
-msgstr "এই QR কোডটিতে আপনার ব্রিজ লাইন রয়েছে। মোবাইল এবং অন্যান্য ডিভাইসগুলিতে আপনার ব্রিজ লাইন কপি করার জন্য এটি QR কোডটি স্ক্যান করুন।"
-
-#: bridgedb/https/templates/bridges.html:131
-msgid "There currently aren't any bridges available..."
-msgstr "বর্তমানে কোন ব্রিজ নেই ..."
-
-#: bridgedb/https/templates/bridges.html:132
-#, python-format
-msgid ""
-" Perhaps you should try %s going back %s and choosing a different bridge "
-"type!"
-msgstr "সম্ভবত %s আপনি ফিরে %s এবং একটি ভিন্ন ব্রিজ প্রকার নির্বাচন করা উচিত!"
-
-#: bridgedb/https/templates/index.html:11
-#, python-format
-msgid "Step %s1%s"
-msgstr "ধাপ %s1%s"
-
-#: bridgedb/https/templates/index.html:13
-#, python-format
-msgid "Download %s Tor Browser %s"
-msgstr "ডাউনলোড %s টর ব্রাউজার %s "
-
-#: bridgedb/https/templates/index.html:25
-#, python-format
-msgid "Step %s2%s"
-msgstr "ধাপ %s 2 %s"
-
-#: bridgedb/https/templates/index.html:27
-#, python-format
-msgid "Get %s bridges %s"
-msgstr "গেট %s ব্রিজ %s"
-
-#: bridgedb/https/templates/index.html:36
-#, python-format
-msgid "Step %s3%s"
-msgstr "ধাপ %s 3 %s"
-
-#: bridgedb/https/templates/index.html:38
-#, python-format
-msgid "Now %s add the bridges to Tor Browser %s"
-msgstr "এখন %s টর ব্রাউজারে সেতু যোগ করুন%s"
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. (These are used to insert HTML5 underlining tags, to mark accesskeys
-#. for disabled users.)
-#: bridgedb/https/templates/options.html:38
-#, python-format
-msgid "%sJ%sust give me bridges!"
-msgstr "%s J %s ust আমাকে ব্রিজ দাও!"
-
-#: bridgedb/https/templates/options.html:51
-msgid "Advanced Options"
-msgstr "উন্নত বিকল্প"
-
-#: bridgedb/https/templates/options.html:86
-msgid "No"
-msgstr "না"
-
-#: bridgedb/https/templates/options.html:87
-msgid "none"
-msgstr "কোনোটা না"
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."
-#: bridgedb/https/templates/options.html:124
-#, python-format
-msgid "%sY%ses!"
-msgstr "%s Y %s es!"
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Please do NOT translate the word "bridge"!
-#: bridgedb/https/templates/options.html:147
-#, python-format
-msgid "%sG%set Bridges"
-msgstr "%sG%s গেট ব্রিজ"
-
-#: bridgedb/strings.py:43
-msgid "[This is an automated message; please do not reply.]"
-msgstr "[এটি একটি স্বয়ংক্রিয় বার্তা; উত্তর দেবেন না দয়া করে।]"
-
-#: bridgedb/strings.py:45
-msgid "Here are your bridges:"
-msgstr "এখানে আপনার ব্রিজগুলি:"
-
-#: bridgedb/strings.py:47
-#, python-format
-msgid ""
-"You have exceeded the rate limit. Please slow down! The minimum time between\n"
-"emails is %s hours. All further emails during this time period will be ignored."
-msgstr "আপনি হার সীমা অতিক্রম করেছেন মন্থর নিচে করুন! মধ্যে সর্বনিম্ন সময়\nইমেলগুলি %s ঘন্টা। এই সময়ের মধ্যে আরও অন্যান্য ইমেল উপেক্ষা করা হবে।"
-
-#: bridgedb/strings.py:50
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr "COMMANDs: (একযোগে একাধিক বিকল্প উল্লেখ করতে COMMANDs একত্রিত করুন)"
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: bridgedb/strings.py:53
-msgid "Welcome to BridgeDB!"
-msgstr "BridgeDB তে স্বাগতম!"
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: bridgedb/strings.py:55
-msgid "Currently supported transport TYPEs:"
-msgstr "বর্তমানে সমর্থিত পরিবহন প্রকার:"
-
-#: bridgedb/strings.py:56
-#, python-format
-msgid "Hey, %s!"
-msgstr "আরে, %s!"
-
-#: bridgedb/strings.py:57
-msgid "Hello, friend!"
-msgstr "হ্যালো বন্ধু!"
-
-#: bridgedb/strings.py:58 bridgedb/https/templates/base.html:90
-msgid "Public Keys"
-msgstr "পাবলিক কী"
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: bridgedb/strings.py:62
-#, python-format
-msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr "এই ইমেলটি rainbows, unicorns, এবং sparkles দিয়ে তৈরি করা হয়েছিল\n%s. তে %s %s"
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: bridgedb/strings.py:72
-#, python-format
-msgid ""
-"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
-"which can help obfuscate your connections to the Tor Network, making it more\n"
-"difficult for anyone watching your internet traffic to determine that you are\n"
-"using Tor.\n"
-"\n"
-msgstr "BridgeDB বিভিন্ন %s ধরনের প্ল্যাগেবল ট্রান্সপোর্ট %s সঙ্গে ব্রিজ প্রদান করতে পারেন,\nযা টর নেটওয়ার্ককে আপনার সংযোগগুলি অপ্রতিরোধ্য করতে সহায়তা করে, এটি আরও বেশি করে তৈরি করে\nযে কেউ আপনার ইন্টারনেট ট্র্যাফিকটি দেখে আপনার পক্ষে তা নির্ধারণ করা কঠিন\nটর ব্যবহার করে\n"
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: bridgedb/strings.py:79
-msgid ""
-"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
-"Transports aren't IPv6 compatible.\n"
-"\n"
-msgstr "কিছু প্ল্যাগেবল মাধ্যমে আইপিভি 6 অ্যাড্রেস সহ কিছু ব্রিজও পাওয়া যায়\nপরিবহন IPv6 সামঞ্জস্যপূর্ণ নয়।\n"
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: The phrase "plain-ol'-vanilla" means "plain, boring,
-#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
-#. which do not have Pluggable Transports, and only speak the regular,
-#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: bridgedb/strings.py:88
-#, python-format
-msgid ""
-"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
-"Pluggable Transports %s which maybe doesn't sound as cool, but they can still\n"
-"help to circumvent internet censorship in many cases.\n"
-"\n"
-msgstr "উপরন্তু, ব্রিজডিবি এর মধ্যে প্রচুর প্লেইন-ভ্যালি-ভ্যানিলা ব্রিজ %s রয়েছে\nপ্ল্যাগেবল ট্রান্সপোর্ট %s যা হয়তো ঠান্ডা বলে মনে করে না, তবে তারা এখনও করতে পারে\nঅনেক ক্ষেত্রে ইন্টারনেট সেন্সরশিপকে বাধা দিতে সাহায্য\n"
-
-#: bridgedb/strings.py:101
-msgid "What are bridges?"
-msgstr "ব্রিজ কি?"
-
-#: bridgedb/strings.py:102
-#, python-format
-msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
-msgstr "%s ব্রিজেস %s টর রিলে যা আপনাকে সেন্সরশিপকে বাধা দিচ্ছে।"
-
-#: bridgedb/strings.py:107
-msgid "I need an alternative way of getting bridges!"
-msgstr "ব্রিজের ব্যবস্থা করার একটা বিকল্প উপায় দরকার!"
-
-#: bridgedb/strings.py:108
-#, python-format
-msgid ""
-"Another way to get bridges is to send an email to %s. Please note that you must\n"
-"send the email using an address from one of the following email providers:\n"
-"%s, %s or %s."
-msgstr "ব্রিজ পেতে আরেকটি উপায় হল %s থেকে একটি ইমেল পাঠানো। দয়া করে মনে রাখবেন যে আপনাকে অবশ্যই\nনিম্নোক্ত ইমেল প্রদানকারীদের মধ্যে একটি ঠিকানা ব্যবহার করে ইমেল পাঠাতে হবে: %s\n, %s বা %s।"
-
-#: bridgedb/strings.py:115
-msgid "My bridges don't work! I need help!"
-msgstr "আমার ব্রিজ কাজ করছে না! আমার সাহায্য দরকার!"
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:117
-#, python-format
-msgid "If your Tor doesn't work, you should email %s."
-msgstr "যদি আপনার টর কাজ না করে থাকে, তাহলে আপনাকে ইমেইল করতে হবে %s।"
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:121
-msgid ""
-"Try including as much info about your case as you can, including the list of\n"
-"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
-"and any messages which Tor gave out, etc."
-msgstr "তালিকাটি সহ আপনার কেস হিসাবে যতটা তথ্য অন্তর্ভুক্ত করার চেষ্টা করুন,\nসেতু এবং প্ল্যাগেবল ট্রান্সফর্মগুলি আপনি ব্যবহার করার চেষ্টা করেছেন, আপনার টর ব্রাউজারের সংস্করণ,\nএবং টর দিয়েছেন এমন কোন বার্তা ইত্যাদি।"
-
-#: bridgedb/strings.py:128
-msgid "Here are your bridge lines:"
-msgstr "এখানে আপনার ব্রিজগুলি:"
-
-#: bridgedb/strings.py:129
-msgid "Get Bridges!"
-msgstr "গেট ব্রিজ"
-
-#: bridgedb/strings.py:133
-msgid "Please select options for bridge type:"
-msgstr "ব্রিজ টাইপ এর জন্য বিকল্প নির্বাচন করুন:"
-
-#: bridgedb/strings.py:134
-msgid "Do you need IPv6 addresses?"
-msgstr "আপনার কি IPv6 ঠিকানা প্রয়োজন?"
-
-#: bridgedb/strings.py:135
-#, python-format
-msgid "Do you need a %s?"
-msgstr "আপনি কি একটি %s প্রয়োজন?"
-
-#: bridgedb/strings.py:139
-msgid "Your browser is not displaying images properly."
-msgstr "আপনার ব্রাউজার সঠিকভাবে ইমেজ প্রদর্শন করা হয় না।"
-
-#: bridgedb/strings.py:140
-msgid "Enter the characters from the image above..."
-msgstr "উপরের চিত্র থেকে অক্ষর গুলি লিখুন ..."
-
-#: bridgedb/strings.py:144
-msgid "How to start using your bridges"
-msgstr "কিভাবে ব্রিজ ব্যবহার শুরু করবেন"
-
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: bridgedb/strings.py:146
-#, python-format
-msgid ""
-"To enter bridges into Tor Browser, first go to the %s Tor Browser download\n"
-"page %s and then follow the instructions there for downloading and starting\n"
-"Tor Browser."
-msgstr "টর ব্রাউজারে ব্রিজ প্রবেশ করতে, প্রথমে %s টর ব্রাউজার ডাউনলোড করুন\nপৃষ্ঠা %s এবং তারপর ডাউনলোড এবং শুরু করার জন্য সেখানে নির্দেশাবলী অনুসরণ করুন\nটর ব্রাউজার"
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:151
-msgid ""
-"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
-"the wizard until it asks:"
-msgstr "যখন 'টর নেটওয়ার্ক সেটিংস' সংলাপ পপ আপ, 'কনফিগার' ক্লিক করুন এবং অনুসরণ করুন\nউইজার্ড যতক্ষণ না জিজ্ঞাসা করে:"
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:155
-msgid ""
-"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
-"to the Tor network?"
-msgstr "আপনার ইন্টারনেট সার্ভিস প্রোভাইডার (আইএসপি) ব্লক বা অন্যথায় সংযোগ সেন্সর করে না\nটর নেটওয়ার্ক থেকে?"
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:159
-msgid ""
-"Select 'Yes' and then click 'Next'. To configure your new bridges, copy and\n"
-"paste the bridge lines into the text input box. Finally, click 'Connect', and\n"
-"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
-"button in the 'Tor Network Settings' wizard for further assistance."
-msgstr "'হ্যাঁ' নির্বাচন করুন এবং তারপর 'পরবর্তী' ক্লিক করুন আপনার নতুন সেতু কনফিগার করতে, কপি এবং\nটেক্সট ইনপুট বাক্সে সেতু লাইন আটকান। অবশেষে, 'সংযুক্ত' ক্লিক করুন, এবং\nআপনি যেতে ভাল হতে হবে! যদি আপনি সমস্যায় পড়েন তবে 'সহায়তা' ক্লিক করার চেষ্টা করুন\nআরও সহায়তা জন্য 'টর নেটওয়ার্ক সেটিংস' উইজার্ড মধ্যে বাটন"
-
-#: bridgedb/strings.py:167
-msgid "Displays this message."
-msgstr "এই বার্তাটি প্রদর্শন করে"
-
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: bridgedb/strings.py:171
-msgid "Request vanilla bridges."
-msgstr "ভ্যানিলা ব্রিজগুলি অনুরোধ করুন"
-
-#: bridgedb/strings.py:172
-msgid "Request IPv6 bridges."
-msgstr "IPv6 ব্রিজের অনুরোধ করুন"
-
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: bridgedb/strings.py:174
-msgid "Request a Pluggable Transport by TYPE."
-msgstr "TYPE দ্বারা প্ল্যাগেবল ট্রান্সপোর্টের অনুরোধ করুন"
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: bridgedb/strings.py:177
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr "BridgeDB এর সর্বজনীন GnuPG কীটির একটি অনুলিপি পান।"
diff --git a/cs_CZ/LC_MESSAGES/bridgedb.po b/cs_CZ/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index acf61e420..000000000
--- a/cs_CZ/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,380 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2015 'The Tor Project, Inc.'
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2011-02-19 16:53+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Czech (Czech Republic) (http://www.transifex.com/otf/torproject/language/cs_CZ/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 1.3\n"
-"Language: cs_CZ\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#. TRANSLATORS: Please DO NOT translate the following words and/or phrases in
-#. any string (regardless of capitalization and/or punctuation):
-#. "BridgeDB"
-#. "pluggable transport"
-#. "pluggable transports"
-#. "obfs2"
-#. "obfs3"
-#. "scramblesuit"
-#. "fteproxy"
-#. "Tor"
-#. "Tor Browser"
-#: bridgedb/https/server.py:167
-msgid "Sorry! Something went wrong with your request."
-msgstr ""
-
-#: bridgedb/https/templates/base.html:79
-msgid "Report a Bug"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:82
-msgid "Source Code"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:85
-msgid "Changelog"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:88
-msgid "Contact"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:35
-msgid "Select All"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:40
-msgid "Show QRCode"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:52
-msgid "QRCode for your bridge lines"
-msgstr ""
-
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: bridgedb/https/templates/bridges.html:67
-#: bridgedb/https/templates/bridges.html:125
-msgid "Uh oh, spaghettios!"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:68
-msgid "It seems there was an error getting your QRCode."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:73
-msgid ""
-"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
-" your bridge lines onto mobile and other devices."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:131
-msgid "There currently aren't any bridges available..."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:132
-#, python-format
-msgid ""
-" Perhaps you should try %s going back %s and choosing a different bridge "
-"type!"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:11
-#, python-format
-msgid "Step %s1%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:13
-#, python-format
-msgid "Download %s Tor Browser %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:25
-#, python-format
-msgid "Step %s2%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:27
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:36
-#, python-format
-msgid "Step %s3%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:38
-#, python-format
-msgid "Now %s add the bridges to Tor Browser %s"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. (These are used to insert HTML5 underlining tags, to mark accesskeys
-#. for disabled users.)
-#: bridgedb/https/templates/options.html:38
-#, python-format
-msgid "%sJ%sust give me bridges!"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:51
-msgid "Advanced Options"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:86
-msgid "No"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:87
-msgid "none"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."
-#: bridgedb/https/templates/options.html:124
-#, python-format
-msgid "%sY%ses!"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Please do NOT translate the word "bridge"!
-#: bridgedb/https/templates/options.html:147
-#, python-format
-msgid "%sG%set Bridges"
-msgstr ""
-
-#: bridgedb/strings.py:43
-msgid "[This is an automated message; please do not reply.]"
-msgstr ""
-
-#: bridgedb/strings.py:45
-msgid "Here are your bridges:"
-msgstr ""
-
-#: bridgedb/strings.py:47
-#, python-format
-msgid ""
-"You have exceeded the rate limit. Please slow down! The minimum time between\n"
-"emails is %s hours. All further emails during this time period will be ignored."
-msgstr ""
-
-#: bridgedb/strings.py:50
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: bridgedb/strings.py:53
-msgid "Welcome to BridgeDB!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: bridgedb/strings.py:55
-msgid "Currently supported transport TYPEs:"
-msgstr ""
-
-#: bridgedb/strings.py:56
-#, python-format
-msgid "Hey, %s!"
-msgstr ""
-
-#: bridgedb/strings.py:57
-msgid "Hello, friend!"
-msgstr ""
-
-#: bridgedb/strings.py:58 bridgedb/https/templates/base.html:90
-msgid "Public Keys"
-msgstr ""
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: bridgedb/strings.py:62
-#, python-format
-msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: bridgedb/strings.py:72
-#, python-format
-msgid ""
-"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
-"which can help obfuscate your connections to the Tor Network, making it more\n"
-"difficult for anyone watching your internet traffic to determine that you are\n"
-"using Tor.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: bridgedb/strings.py:79
-msgid ""
-"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
-"Transports aren't IPv6 compatible.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: The phrase "plain-ol'-vanilla" means "plain, boring,
-#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
-#. which do not have Pluggable Transports, and only speak the regular,
-#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: bridgedb/strings.py:88
-#, python-format
-msgid ""
-"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
-"Pluggable Transports %s which maybe doesn't sound as cool, but they can still\n"
-"help to circumvent internet censorship in many cases.\n"
-"\n"
-msgstr ""
-
-#: bridgedb/strings.py:101
-msgid "What are bridges?"
-msgstr ""
-
-#: bridgedb/strings.py:102
-#, python-format
-msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: bridgedb/strings.py:107
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:108
-#, python-format
-msgid ""
-"Another way to get bridges is to send an email to %s. Please note that you must\n"
-"send the email using an address from one of the following email providers:\n"
-"%s, %s or %s."
-msgstr ""
-
-#: bridgedb/strings.py:115
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:117
-#, python-format
-msgid "If your Tor doesn't work, you should email %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:121
-msgid ""
-"Try including as much info about your case as you can, including the list of\n"
-"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
-"and any messages which Tor gave out, etc."
-msgstr ""
-
-#: bridgedb/strings.py:128
-msgid "Here are your bridge lines:"
-msgstr ""
-
-#: bridgedb/strings.py:129
-msgid "Get Bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:133
-msgid "Please select options for bridge type:"
-msgstr ""
-
-#: bridgedb/strings.py:134
-msgid "Do you need IPv6 addresses?"
-msgstr ""
-
-#: bridgedb/strings.py:135
-#, python-format
-msgid "Do you need a %s?"
-msgstr ""
-
-#: bridgedb/strings.py:139
-msgid "Your browser is not displaying images properly."
-msgstr ""
-
-#: bridgedb/strings.py:140
-msgid "Enter the characters from the image above..."
-msgstr ""
-
-#: bridgedb/strings.py:144
-msgid "How to start using your bridges"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: bridgedb/strings.py:146
-#, python-format
-msgid ""
-"To enter bridges into Tor Browser, first go to the %s Tor Browser download\n"
-"page %s and then follow the instructions there for downloading and starting\n"
-"Tor Browser."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:151
-msgid ""
-"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
-"the wizard until it asks:"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:155
-msgid ""
-"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
-"to the Tor network?"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:159
-msgid ""
-"Select 'Yes' and then click 'Next'. To configure your new bridges, copy and\n"
-"paste the bridge lines into the text input box. Finally, click 'Connect', and\n"
-"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
-"button in the 'Tor Network Settings' wizard for further assistance."
-msgstr ""
-
-#: bridgedb/strings.py:167
-msgid "Displays this message."
-msgstr ""
-
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: bridgedb/strings.py:171
-msgid "Request vanilla bridges."
-msgstr ""
-
-#: bridgedb/strings.py:172
-msgid "Request IPv6 bridges."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: bridgedb/strings.py:174
-msgid "Request a Pluggable Transport by TYPE."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: bridgedb/strings.py:177
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr ""
diff --git a/es_NI/LC_MESSAGES/bridgedb.po b/es_NI/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index 04dd356f5..000000000
--- a/es_NI/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,100 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2013 ORGANIZATION
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2013-03-27 21:41+0000\n"
-"PO-Revision-Date: 2014-03-14 09:27+0000\n"
-"Last-Translator: Phoul <colin(a)torproject.org>\n"
-"Language-Team: Spanish (Nicaragua) (http://www.transifex.com/projects/p/torproject/language/es_NI/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
-"Language: es_NI\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: lib/bridgedb/templates/base.html:33
-msgid "What are bridges?"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:34
-#, python-format
-msgid ""
-"%s Bridge relays %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:39
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:40
-#, python-format
-msgid ""
-"Another way to find public bridge addresses is to send an email (from a %s "
-"or a %s address) to %s with the line 'get bridges' by itself in the body of "
-"the mail."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:48
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:49
-#, python-format
-msgid ""
-"If your Tor doesn't work, you should email %s. Try including as much info "
-"about your case as you can, including the list of bridges you used, the "
-"bundle filename/version you used, the messages that Tor gave out, etc."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:10
-msgid ""
-"To use the above lines, go to Vidalia's Network settings page, and click "
-"\"My ISP blocks connections to the Tor network\". Then add each bridge "
-"address one at a time."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:13
-msgid "No bridges currently available"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:6
-msgid "Upgrade your browser to Firefox"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:8
-msgid "Type the two words"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:6
-msgid "Step 1"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:8
-#, python-format
-msgid "Get %s Tor Browser Bundle %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:13
-msgid "Step 2"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:15
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:19
-msgid "Step 3"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:21
-#, python-format
-msgid "Now %s add the bridges to Tor %s"
-msgstr ""
diff --git a/si/LC_MESSAGES/bridgedb.po b/si/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index 35ff905dc..000000000
--- a/si/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,379 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2015 'The Tor Project, Inc.'
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'POT-Creation-Date: 2015-03-19 22:13+0000\n"
-"PO-Revision-Date: 2015-04-19 08:23+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Sinhala (http://www.transifex.com/projects/p/torproject/language/si/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
-"Language: si\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANSLATORS: Please DO NOT translate the following words and/or phrases in
-#. any string (regardless of capitalization and/or punctuation):
-#. "BridgeDB"
-#. "pluggable transport"
-#. "pluggable transports"
-#. "obfs2"
-#. "obfs3"
-#. "scramblesuit"
-#. "fteproxy"
-#. "Tor"
-#. "Tor Browser"
-#: lib/bridgedb/HTTPServer.py:107
-msgid "Sorry! Something went wrong with your request."
-msgstr ""
-
-#: lib/bridgedb/strings.py:18
-msgid "[This is an automated message; please do not reply.]"
-msgstr ""
-
-#: lib/bridgedb/strings.py:20
-msgid "Here are your bridges:"
-msgstr ""
-
-#: lib/bridgedb/strings.py:22
-#, python-format
-msgid ""
-"You have exceeded the rate limit. Please slow down! The minimum time between\n"
-"emails is %s hours. All further emails during this time period will be ignored."
-msgstr ""
-
-#: lib/bridgedb/strings.py:25
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: lib/bridgedb/strings.py:28
-msgid "Welcome to BridgeDB!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: lib/bridgedb/strings.py:30
-msgid "Currently supported transport TYPEs:"
-msgstr ""
-
-#: lib/bridgedb/strings.py:31
-#, python-format
-msgid "Hey, %s!"
-msgstr ""
-
-#: lib/bridgedb/strings.py:32
-msgid "Hello, friend!"
-msgstr ""
-
-#: lib/bridgedb/strings.py:33 lib/bridgedb/templates/base.html:100
-msgid "Public Keys"
-msgstr ""
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: lib/bridgedb/strings.py:37
-#, python-format
-msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: lib/bridgedb/strings.py:47
-#, python-format
-msgid ""
-"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
-"which can help obfuscate your connections to the Tor Network, making it more\n"
-"difficult for anyone watching your internet traffic to determine that you are\n"
-"using Tor.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: lib/bridgedb/strings.py:54
-msgid ""
-"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
-"Transports aren't IPv6 compatible.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: The phrase "plain-ol'-vanilla" means "plain, boring,
-#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
-#. which do not have Pluggable Transports, and only speak the regular,
-#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: lib/bridgedb/strings.py:63
-#, python-format
-msgid ""
-"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
-"Pluggable Transports %s which maybe doesn't sound as cool, but they can still\n"
-"help to circumvent internet censorship in many cases.\n"
-"\n"
-msgstr ""
-
-#: lib/bridgedb/strings.py:76
-msgid "What are bridges?"
-msgstr ""
-
-#: lib/bridgedb/strings.py:77
-#, python-format
-msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: lib/bridgedb/strings.py:82
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: lib/bridgedb/strings.py:83
-#, python-format
-msgid ""
-"Another way to get bridges is to send an email to %s. Please note that you must\n"
-"send the email using an address from one of the following email providers:\n"
-"%s, %s or %s."
-msgstr ""
-
-#: lib/bridgedb/strings.py:90
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: lib/bridgedb/strings.py:92
-#, python-format
-msgid "If your Tor doesn't work, you should email %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: lib/bridgedb/strings.py:96
-msgid ""
-"Try including as much info about your case as you can, including the list of\n"
-"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
-"and any messages which Tor gave out, etc."
-msgstr ""
-
-#: lib/bridgedb/strings.py:103
-msgid "Here are your bridge lines:"
-msgstr ""
-
-#: lib/bridgedb/strings.py:104
-msgid "Get Bridges!"
-msgstr ""
-
-#: lib/bridgedb/strings.py:108
-msgid "Please select options for bridge type:"
-msgstr ""
-
-#: lib/bridgedb/strings.py:109
-msgid "Do you need IPv6 addresses?"
-msgstr ""
-
-#: lib/bridgedb/strings.py:110
-#, python-format
-msgid "Do you need a %s?"
-msgstr ""
-
-#: lib/bridgedb/strings.py:114
-msgid "Your browser is not displaying images properly."
-msgstr ""
-
-#: lib/bridgedb/strings.py:115
-msgid "Enter the characters from the image above..."
-msgstr ""
-
-#: lib/bridgedb/strings.py:119
-msgid "How to start using your bridges"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: lib/bridgedb/strings.py:121
-#, python-format
-msgid ""
-"To enter bridges into Tor Browser, first go to the %s Tor Browser download\n"
-"page %s and then follow the instructions there for downloading and starting\n"
-"Tor Browser."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: lib/bridgedb/strings.py:126
-msgid ""
-"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
-"the wizard until it asks:"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: lib/bridgedb/strings.py:130
-msgid ""
-"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
-"to the Tor network?"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: lib/bridgedb/strings.py:134
-msgid ""
-"Select 'Yes' and then click 'Next'. To configure your new bridges, copy and\n"
-"paste the bridge lines into the text input box. Finally, click 'Connect', and\n"
-"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
-"button in the 'Tor Network Settings' wizard for further assistance."
-msgstr ""
-
-#: lib/bridgedb/strings.py:142
-msgid "Displays this message."
-msgstr ""
-
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: lib/bridgedb/strings.py:146
-msgid "Request vanilla bridges."
-msgstr ""
-
-#: lib/bridgedb/strings.py:147
-msgid "Request IPv6 bridges."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: lib/bridgedb/strings.py:149
-msgid "Request a Pluggable Transport by TYPE."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: lib/bridgedb/strings.py:152
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:89
-msgid "Report a Bug"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:92
-msgid "Source Code"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:95
-msgid "Changelog"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:98
-msgid "Contact"
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:81
-msgid "Select All"
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:87
-msgid "Show QRCode"
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:100
-msgid "QRCode for your bridge lines"
-msgstr ""
-
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: lib/bridgedb/templates/bridges.html:115
-#: lib/bridgedb/templates/bridges.html:175
-msgid "Uh oh, spaghettios!"
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:116
-msgid "It seems there was an error getting your QRCode."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:121
-msgid ""
-"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
-" your bridge lines onto mobile and other devices."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:181
-msgid "There currently aren't any bridges available..."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:182
-#, python-format
-msgid ""
-" Perhaps you should try %s going back %s and choosing a different bridge "
-"type!"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:11
-#, python-format
-msgid "Step %s1%s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:13
-#, python-format
-msgid "Download %s Tor Browser %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:25
-#, python-format
-msgid "Step %s2%s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:27
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:36
-#, python-format
-msgid "Step %s3%s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:38
-#, python-format
-msgid "Now %s add the bridges to Tor Browser %s"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. (These are used to insert HTML5 underlining tags, to mark accesskeys
-#. for disabled users.)
-#: lib/bridgedb/templates/options.html:38
-#, python-format
-msgid "%sJ%sust give me bridges!"
-msgstr ""
-
-#: lib/bridgedb/templates/options.html:52
-msgid "Advanced Options"
-msgstr ""
-
-#: lib/bridgedb/templates/options.html:88
-msgid "No"
-msgstr ""
-
-#: lib/bridgedb/templates/options.html:89
-msgid "none"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."
-#: lib/bridgedb/templates/options.html:127
-#, python-format
-msgid "%sY%ses!"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Please do NOT translate the word "bridge"!
-#: lib/bridgedb/templates/options.html:151
-#, python-format
-msgid "%sG%set Bridges"
-msgstr ""
diff --git a/sq_AL/LC_MESSAGES/bridgedb.po b/sq_AL/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index dbbb30209..000000000
--- a/sq_AL/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,380 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2015 'The Tor Project, Inc.'
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
-"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2011-02-19 16:53+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Albanian (Albania) (http://www.transifex.com/otf/torproject/language/sq_AL/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 1.3\n"
-"Language: sq_AL\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANSLATORS: Please DO NOT translate the following words and/or phrases in
-#. any string (regardless of capitalization and/or punctuation):
-#. "BridgeDB"
-#. "pluggable transport"
-#. "pluggable transports"
-#. "obfs2"
-#. "obfs3"
-#. "scramblesuit"
-#. "fteproxy"
-#. "Tor"
-#. "Tor Browser"
-#: bridgedb/https/server.py:167
-msgid "Sorry! Something went wrong with your request."
-msgstr ""
-
-#: bridgedb/https/templates/base.html:79
-msgid "Report a Bug"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:82
-msgid "Source Code"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:85
-msgid "Changelog"
-msgstr ""
-
-#: bridgedb/https/templates/base.html:88
-msgid "Contact"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:35
-msgid "Select All"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:40
-msgid "Show QRCode"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:52
-msgid "QRCode for your bridge lines"
-msgstr ""
-
-#. TRANSLATORS: Please translate this into some silly way to say
-#. "There was a problem!" in your language. For example,
-#. for Italian, you might translate this into "Mama mia!",
-#. or for French: "Sacrebleu!". :)
-#: bridgedb/https/templates/bridges.html:67
-#: bridgedb/https/templates/bridges.html:125
-msgid "Uh oh, spaghettios!"
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:68
-msgid "It seems there was an error getting your QRCode."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:73
-msgid ""
-"This QRCode contains your bridge lines. Scan it with a QRCode reader to copy"
-" your bridge lines onto mobile and other devices."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:131
-msgid "There currently aren't any bridges available..."
-msgstr ""
-
-#: bridgedb/https/templates/bridges.html:132
-#, python-format
-msgid ""
-" Perhaps you should try %s going back %s and choosing a different bridge "
-"type!"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:11
-#, python-format
-msgid "Step %s1%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:13
-#, python-format
-msgid "Download %s Tor Browser %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:25
-#, python-format
-msgid "Step %s2%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:27
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:36
-#, python-format
-msgid "Step %s3%s"
-msgstr ""
-
-#: bridgedb/https/templates/index.html:38
-#, python-format
-msgid "Now %s add the bridges to Tor Browser %s"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. (These are used to insert HTML5 underlining tags, to mark accesskeys
-#. for disabled users.)
-#: bridgedb/https/templates/options.html:38
-#, python-format
-msgid "%sJ%sust give me bridges!"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:51
-msgid "Advanced Options"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:86
-msgid "No"
-msgstr ""
-
-#: bridgedb/https/templates/options.html:87
-msgid "none"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Translate "Yes!" as in "Yes! I do need IPv6 addresses."
-#: bridgedb/https/templates/options.html:124
-#, python-format
-msgid "%sY%ses!"
-msgstr ""
-
-#. TRANSLATORS: Please make sure the '%s' surrounding single letters at the
-#. beginning of words are present in your final translation. Thanks!
-#. TRANSLATORS: Please do NOT translate the word "bridge"!
-#: bridgedb/https/templates/options.html:147
-#, python-format
-msgid "%sG%set Bridges"
-msgstr ""
-
-#: bridgedb/strings.py:43
-msgid "[This is an automated message; please do not reply.]"
-msgstr ""
-
-#: bridgedb/strings.py:45
-msgid "Here are your bridges:"
-msgstr ""
-
-#: bridgedb/strings.py:47
-#, python-format
-msgid ""
-"You have exceeded the rate limit. Please slow down! The minimum time between\n"
-"emails is %s hours. All further emails during this time period will be ignored."
-msgstr ""
-
-#: bridgedb/strings.py:50
-msgid ""
-"COMMANDs: (combine COMMANDs to specify multiple options simultaneously)"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word "BridgeDB".
-#: bridgedb/strings.py:53
-msgid "Welcome to BridgeDB!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the words "transport" or "TYPE".
-#: bridgedb/strings.py:55
-msgid "Currently supported transport TYPEs:"
-msgstr ""
-
-#: bridgedb/strings.py:56
-#, python-format
-msgid "Hey, %s!"
-msgstr ""
-
-#: bridgedb/strings.py:57
-msgid "Hello, friend!"
-msgstr ""
-
-#: bridgedb/strings.py:58 bridgedb/https/templates/base.html:90
-msgid "Public Keys"
-msgstr ""
-
-#. TRANSLATORS: This string will end up saying something like:
-#. "This email was generated with rainbows, unicorns, and sparkles
-#. for alice(a)example.com on Friday, 09 May, 2014 at 18:59:39."
-#: bridgedb/strings.py:62
-#, python-format
-msgid ""
-"This email was generated with rainbows, unicorns, and sparkles\n"
-"for %s on %s at %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#. TRANSLATORS: Please DO NOT translate "Tor Network".
-#: bridgedb/strings.py:72
-#, python-format
-msgid ""
-"BridgeDB can provide bridges with several %stypes of Pluggable Transports%s,\n"
-"which can help obfuscate your connections to the Tor Network, making it more\n"
-"difficult for anyone watching your internet traffic to determine that you are\n"
-"using Tor.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#: bridgedb/strings.py:79
-msgid ""
-"Some bridges with IPv6 addresses are also available, though some Pluggable\n"
-"Transports aren't IPv6 compatible.\n"
-"\n"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: The phrase "plain-ol'-vanilla" means "plain, boring,
-#. regular, or unexciting". Like vanilla ice cream. It refers to bridges
-#. which do not have Pluggable Transports, and only speak the regular,
-#. boring Tor protocol. Translate it as you see fit. Have fun with it.
-#: bridgedb/strings.py:88
-#, python-format
-msgid ""
-"Additionally, BridgeDB has plenty of plain-ol'-vanilla bridges %s without any\n"
-"Pluggable Transports %s which maybe doesn't sound as cool, but they can still\n"
-"help to circumvent internet censorship in many cases.\n"
-"\n"
-msgstr ""
-
-#: bridgedb/strings.py:101
-msgid "What are bridges?"
-msgstr ""
-
-#: bridgedb/strings.py:102
-#, python-format
-msgid "%s Bridges %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: bridgedb/strings.py:107
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:108
-#, python-format
-msgid ""
-"Another way to get bridges is to send an email to %s. Please note that you must\n"
-"send the email using an address from one of the following email providers:\n"
-"%s, %s or %s."
-msgstr ""
-
-#: bridgedb/strings.py:115
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:117
-#, python-format
-msgid "If your Tor doesn't work, you should email %s."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:121
-msgid ""
-"Try including as much info about your case as you can, including the list of\n"
-"bridges and Pluggable Transports you tried to use, your Tor Browser version,\n"
-"and any messages which Tor gave out, etc."
-msgstr ""
-
-#: bridgedb/strings.py:128
-msgid "Here are your bridge lines:"
-msgstr ""
-
-#: bridgedb/strings.py:129
-msgid "Get Bridges!"
-msgstr ""
-
-#: bridgedb/strings.py:133
-msgid "Please select options for bridge type:"
-msgstr ""
-
-#: bridgedb/strings.py:134
-msgid "Do you need IPv6 addresses?"
-msgstr ""
-
-#: bridgedb/strings.py:135
-#, python-format
-msgid "Do you need a %s?"
-msgstr ""
-
-#: bridgedb/strings.py:139
-msgid "Your browser is not displaying images properly."
-msgstr ""
-
-#: bridgedb/strings.py:140
-msgid "Enter the characters from the image above..."
-msgstr ""
-
-#: bridgedb/strings.py:144
-msgid "How to start using your bridges"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor Browser".
-#: bridgedb/strings.py:146
-#, python-format
-msgid ""
-"To enter bridges into Tor Browser, first go to the %s Tor Browser download\n"
-"page %s and then follow the instructions there for downloading and starting\n"
-"Tor Browser."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:151
-msgid ""
-"When the 'Tor Network Settings' dialogue pops up, click 'Configure' and follow\n"
-"the wizard until it asks:"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:155
-msgid ""
-"Does your Internet Service Provider (ISP) block or otherwise censor connections\n"
-"to the Tor network?"
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "Tor".
-#: bridgedb/strings.py:159
-msgid ""
-"Select 'Yes' and then click 'Next'. To configure your new bridges, copy and\n"
-"paste the bridge lines into the text input box. Finally, click 'Connect', and\n"
-"you should be good to go! If you experience trouble, try clicking the 'Help'\n"
-"button in the 'Tor Network Settings' wizard for further assistance."
-msgstr ""
-
-#: bridgedb/strings.py:167
-msgid "Displays this message."
-msgstr ""
-
-#. TRANSLATORS: Please try to make it clear that "vanilla" here refers to the
-#. same non-Pluggable Transport bridges described above as being
-#. "plain-ol'-vanilla" bridges.
-#: bridgedb/strings.py:171
-msgid "Request vanilla bridges."
-msgstr ""
-
-#: bridgedb/strings.py:172
-msgid "Request IPv6 bridges."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate the word the word "TYPE".
-#: bridgedb/strings.py:174
-msgid "Request a Pluggable Transport by TYPE."
-msgstr ""
-
-#. TRANSLATORS: Please DO NOT translate "BridgeDB".
-#. TRANSLATORS: Please DO NOT translate "GnuPG".
-#: bridgedb/strings.py:177
-msgid "Get a copy of BridgeDB's public GnuPG key."
-msgstr ""
diff --git a/zh/LC_MESSAGES/bridgedb.po b/zh/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index 9b085c25b..000000000
--- a/zh/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,100 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2013 ORGANIZATION
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2013-03-27 21:41+0000\n"
-"PO-Revision-Date: 2013-12-30 18:31+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/torproject/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: lib/bridgedb/templates/base.html:33
-msgid "What are bridges?"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:34
-#, python-format
-msgid ""
-"%s Bridge relays %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:39
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:40
-#, python-format
-msgid ""
-"Another way to find public bridge addresses is to send an email (from a %s "
-"or a %s address) to %s with the line 'get bridges' by itself in the body of "
-"the mail."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:48
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:49
-#, python-format
-msgid ""
-"If your Tor doesn't work, you should email %s. Try including as much info "
-"about your case as you can, including the list of bridges you used, the "
-"bundle filename/version you used, the messages that Tor gave out, etc."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:10
-msgid ""
-"To use the above lines, go to Vidalia's Network settings page, and click "
-"\"My ISP blocks connections to the Tor network\". Then add each bridge "
-"address one at a time."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:13
-msgid "No bridges currently available"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:6
-msgid "Upgrade your browser to Firefox"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:8
-msgid "Type the two words"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:6
-msgid "Step 1"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:8
-#, python-format
-msgid "Get %s Tor Browser Bundle %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:13
-msgid "Step 2"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:15
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:19
-msgid "Step 3"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:21
-#, python-format
-msgid "Now %s add the bridges to Tor %s"
-msgstr ""
diff --git a/zh_CN.GB2312/LC_MESSAGES/bridgedb.po b/zh_CN.GB2312/LC_MESSAGES/bridgedb.po
deleted file mode 100644
index bfe49a225..000000000
--- a/zh_CN.GB2312/LC_MESSAGES/bridgedb.po
+++ /dev/null
@@ -1,100 +0,0 @@
-# Translations template for BridgeDB.
-# Copyright (C) 2013 ORGANIZATION
-# This file is distributed under the same license as the BridgeDB project.
-#
-# Translators:
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: https://trac.torproject.org/projects/tor\n"
-"POT-Creation-Date: 2013-03-27 21:41+0000\n"
-"PO-Revision-Date: 2014-01-07 02:28+0000\n"
-"Last-Translator: Phoul <colin(a)torproject.org>\n"
-"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/torproject/language/zh_CN.GB2312/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 0.9.6\n"
-"Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: lib/bridgedb/templates/base.html:33
-msgid "What are bridges?"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:34
-#, python-format
-msgid ""
-"%s Bridge relays %s are Tor relays that help you circumvent censorship."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:39
-msgid "I need an alternative way of getting bridges!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:40
-#, python-format
-msgid ""
-"Another way to find public bridge addresses is to send an email (from a %s "
-"or a %s address) to %s with the line 'get bridges' by itself in the body of "
-"the mail."
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:48
-msgid "My bridges don't work! I need help!"
-msgstr ""
-
-#: lib/bridgedb/templates/base.html:49
-#, python-format
-msgid ""
-"If your Tor doesn't work, you should email %s. Try including as much info "
-"about your case as you can, including the list of bridges you used, the "
-"bundle filename/version you used, the messages that Tor gave out, etc."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:10
-msgid ""
-"To use the above lines, go to Vidalia's Network settings page, and click "
-"\"My ISP blocks connections to the Tor network\". Then add each bridge "
-"address one at a time."
-msgstr ""
-
-#: lib/bridgedb/templates/bridges.html:13
-msgid "No bridges currently available"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:6
-msgid "Upgrade your browser to Firefox"
-msgstr ""
-
-#: lib/bridgedb/templates/captcha.html:8
-msgid "Type the two words"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:6
-msgid "Step 1"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:8
-#, python-format
-msgid "Get %s Tor Browser Bundle %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:13
-msgid "Step 2"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:15
-#, python-format
-msgid "Get %s bridges %s"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:19
-msgid "Step 3"
-msgstr ""
-
-#: lib/bridgedb/templates/index.html:21
-#, python-format
-msgid "Now %s add the bridges to Tor %s"
-msgstr ""
1
0

[translation/https_everywhere_completed] Update translations for https_everywhere_completed
by translation@torproject.org 02 Aug '18
by translation@torproject.org 02 Aug '18
02 Aug '18
commit 37a19605c507dfd736187801da2e4db69b4db641
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Aug 2 12:15:41 2018 +0000
Update translations for https_everywhere_completed
---
fa/https-everywhere.dtd | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/fa/https-everywhere.dtd b/fa/https-everywhere.dtd
index 289c95133..73719105c 100644
--- a/fa/https-everywhere.dtd
+++ b/fa/https-everywhere.dtd
@@ -1,11 +1,11 @@
-<!ENTITY https-everywhere.about.title "درباره HTTPS سراسری">
-<!ENTITY https-everywhere.about.ext_name "HTTPS سراسری">
+<!ENTITY https-everywhere.about.title "درباره همه جا HTTPS ">
+<!ENTITY https-everywhere.about.ext_name "همه جا HTTPS">
<!ENTITY https-everywhere.about.ext_description "وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وبسایتها استفاده کنید.">
<!ENTITY https-everywhere.about.version "نسخه">
<!ENTITY https-everywhere.about.rulesets_version "نسخه دستور عمل برای">
<!ENTITY https-everywhere.about.add_new_rule "افزودن قانون جدید">
-<!ENTITY https-everywhere.menu.donate_eff_imperative "به EFF کمک مالی کنید.">
+<!ENTITY https-everywhere.menu.donate_eff_imperative "به سازمان EFF کمک مالی کنید.">
<!ENTITY https-everywhere.menu.observatory "تنظیمهای رصدخانهی SSL">
<!ENTITY https-everywhere.menu.globalEnable "HTTPS سراسری را فعال کنید ">
<!ENTITY https-everywhere.menu.blockUnencryptedRequests "مسدود کردن تمامی درخواست های کدگذاری نشده">
1
0

[translation/https_everywhere] Update translations for https_everywhere
by translation@torproject.org 02 Aug '18
by translation@torproject.org 02 Aug '18
02 Aug '18
commit 1f6c51b70f55523b9ca5d308beb3069308c23285
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Aug 2 12:15:30 2018 +0000
Update translations for https_everywhere
---
fa/https-everywhere.dtd | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/fa/https-everywhere.dtd b/fa/https-everywhere.dtd
index 289c95133..73719105c 100644
--- a/fa/https-everywhere.dtd
+++ b/fa/https-everywhere.dtd
@@ -1,11 +1,11 @@
-<!ENTITY https-everywhere.about.title "درباره HTTPS سراسری">
-<!ENTITY https-everywhere.about.ext_name "HTTPS سراسری">
+<!ENTITY https-everywhere.about.title "درباره همه جا HTTPS ">
+<!ENTITY https-everywhere.about.ext_name "همه جا HTTPS">
<!ENTITY https-everywhere.about.ext_description "وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وبسایتها استفاده کنید.">
<!ENTITY https-everywhere.about.version "نسخه">
<!ENTITY https-everywhere.about.rulesets_version "نسخه دستور عمل برای">
<!ENTITY https-everywhere.about.add_new_rule "افزودن قانون جدید">
-<!ENTITY https-everywhere.menu.donate_eff_imperative "به EFF کمک مالی کنید.">
+<!ENTITY https-everywhere.menu.donate_eff_imperative "به سازمان EFF کمک مالی کنید.">
<!ENTITY https-everywhere.menu.observatory "تنظیمهای رصدخانهی SSL">
<!ENTITY https-everywhere.menu.globalEnable "HTTPS سراسری را فعال کنید ">
<!ENTITY https-everywhere.menu.blockUnencryptedRequests "مسدود کردن تمامی درخواست های کدگذاری نشده">
1
0
commit 21989c43a780a6eb88d598506aa8b69f052f1fd7
Author: hiro <hiro(a)torproject.org>
Date: Thu Aug 2 11:47:25 2018 +0200
Change emails in job posts
---
about/en/jobs-grantsmanager.wml | 2 +-
about/en/jobs-grantwriter.wml | 2 +-
about/en/jobs-payrollspecialist.wml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/about/en/jobs-grantsmanager.wml b/about/en/jobs-grantsmanager.wml
index ea2bf27b..b4f157b5 100644
--- a/about/en/jobs-grantsmanager.wml
+++ b/about/en/jobs-grantsmanager.wml
@@ -56,7 +56,7 @@ The Tor Project's workforce is smart and committed. Experience working with open
Flexible salary, depending on experience. The Tor Project has a competitive benefits package, including a generous PTO policy; 14 paid holidays per year (including the week between Christmas and New Year's, when the office is closed); health, vision, dental, disability, and life insurance paid in full for employee; and flexible work schedule.
</p>
<p>
-This is a full-time, hands-on position, which can be done remotely or in our office in Seattle, WA. To apply, send a cover letter and your resume to hr at torproject dot org with “Grants Manager” in the subject line. Tell us why you think you’re the right person for this job and why you want to work at Tor Project. No phone calls please!
+This is a full-time, hands-on position, which can be done remotely or in our office in Seattle, WA. To apply, send a cover letter and your resume to job-grantsmanager at torproject dot org with “Grants Manager” in the subject line. Tell us why you think you’re the right person for this job and why you want to work at Tor Project. No phone calls please!
</p>
<p>
The Tor Project, Inc., is an equal opportunity, affirmative action employer.
diff --git a/about/en/jobs-grantwriter.wml b/about/en/jobs-grantwriter.wml
index 532dfce9..a2a30613 100644
--- a/about/en/jobs-grantwriter.wml
+++ b/about/en/jobs-grantwriter.wml
@@ -56,7 +56,7 @@ Flexible salary, depending on experience. The Tor Project has a competitive bene
This is a full-time position. The Tor Project’s main office is in Seattle, and we’d be delighted to supply a desk for this position there, however, this job can be done remotely.
</p>
<p>
-To apply, send a cover letter and your resume to hr at torproject dot org with the subject “Grant Writer." Tell us why you think you're the right person for this job, why you want to work at Tor Project, and please include links to writing samples. No phone calls please!
+To apply, send a cover letter and your resume to job-grantwriter at torproject dot org with the subject “Grant Writer." Tell us why you think you're the right person for this job, why you want to work at Tor Project, and please include links to writing samples. No phone calls please!
</p>
<p>
The Tor Project, Inc., is an equal opportunity, affirmative action employer.</p>
diff --git a/about/en/jobs-payrollspecialist.wml b/about/en/jobs-payrollspecialist.wml
index 48b8008e..60c88326 100644
--- a/about/en/jobs-payrollspecialist.wml
+++ b/about/en/jobs-payrollspecialist.wml
@@ -60,7 +60,7 @@ The Tor Project's workforce is smart, passionate, and dedicated. Experience work
Flexible salary, depending on experience. The Tor Project has a competitive benefits package, including a generous PTO policy; 14 paid holidays per year (including the week between Christmas and New Year's, when the office is closed); health, vision, dental, disability, and life insurance paid in full for employee; and flexible work schedule.
</p>
<p>
-This is a full-time, hands-on position, which can be done remotely or in our office in Seattle, WA. To apply, send a cover letter and your resume to hr at torproject dot org with “Bookkeeper/Payroll Specialist” in the subject line. Tell us why you think you’re the right person for this job and why you want to work at Tor Project. No phone calls please! </p>
+This is a full-time, hands-on position, which can be done remotely or in our office in Seattle, WA. To apply, send a cover letter and your resume to job-bookkeeper at torproject dot org with “Bookkeeper/Payroll Specialist” in the subject line. Tell us why you think you’re the right person for this job and why you want to work at Tor Project. No phone calls please! </p>
<p>
The Tor Project, Inc., is an equal opportunity, affirmative action
1
0

[translation/abouttor-homepage] #12095 remove dead language teams, merge bn and bn_BD before
by emmapeel@torproject.org 02 Aug '18
by emmapeel@torproject.org 02 Aug '18
02 Aug '18
commit 7007235a6873c3ab544aed3225ebdf7a29972927
Author: emma peel <emma.peel(a)riseup.net>
Date: Thu Aug 2 09:13:10 2018 +0000
#12095 remove dead language teams, merge bn and bn_BD before
---
af_ZA/aboutTor.dtd | 48 -------------------------------
am_ET/aboutTor.dtd | 49 -------------------------------
bg_BG/aboutTor.dtd | 48 -------------------------------
bn/aboutTor.dtd | 52 ++++++++++++++++-----------------
bn_BD/aboutTor.dtd | 45 -----------------------------
ca_ES/aboutTor.dtd | 73 -----------------------------------------------
cs_CZ/aboutTor.dtd | 49 -------------------------------
el_GR/aboutTor.dtd | 48 -------------------------------
es_NI/aboutTor.dtd | 48 -------------------------------
si/aboutTor.dtd | 49 -------------------------------
sq_AL/aboutTor.dtd | 49 -------------------------------
zh/aboutTor.dtd | 73 -----------------------------------------------
zh_CN.GB2312/aboutTor.dtd | 73 -----------------------------------------------
13 files changed, 26 insertions(+), 678 deletions(-)
diff --git a/af_ZA/aboutTor.dtd b/af_ZA/aboutTor.dtd
deleted file mode 100644
index 7128bb829..000000000
--- a/af_ZA/aboutTor.dtd
+++ /dev/null
@@ -1,48 +0,0 @@
-<!--
- - Copyright (c) 2014, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/am_ET/aboutTor.dtd b/am_ET/aboutTor.dtd
deleted file mode 100644
index c9a7c4965..000000000
--- a/am_ET/aboutTor.dtd
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- - Copyright (c) 2015, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "ስለ ቶር">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "WARNING: this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Check for Tor Browser Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Welcome to Tor Browser">
-<!ENTITY aboutTor.success2.label "Connected to the Tor network.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchDCPost.link "https://search.disconnect.me/searchTerms/search?ses=Google&location_opt…">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/bg_BG/aboutTor.dtd b/bg_BG/aboutTor.dtd
deleted file mode 100644
index 7128bb829..000000000
--- a/bg_BG/aboutTor.dtd
+++ /dev/null
@@ -1,48 +0,0 @@
-<!--
- - Copyright (c) 2014, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/bn/aboutTor.dtd b/bn/aboutTor.dtd
index 4b3f7611a..f9226bf1a 100644
--- a/bn/aboutTor.dtd
+++ b/bn/aboutTor.dtd
@@ -4,42 +4,42 @@
- vim: set sw=2 sts=2 ts=8 et syntax=xml:
-->
-<!ENTITY aboutTor.title "টর সম্পর্কে">
+<!ENTITY aboutTor.title "Tor সম্পর্কে">
-<!ENTITY aboutTor.outOfDateTorOn.label "WARNING: this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Check for Tor Browser Update.">
+<!ENTITY aboutTor.outOfDateTorOn.label "সতর্কতা: এই ব্রাউজারটি পুরানো।">
+<!ENTITY aboutTor.outOfDateTorOff.label "এছাড়াও, এই ব্রাউজারটিও পুরানো।">
+<!ENTITY aboutTor.outOfDate2.label "Onion এর উপর ক্লিক করুন এবং তারপর টর ব্রাউজার আপডেট জন্য চেক নির্বাচন করুন।">
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
+<!ENTITY aboutTor.check.label "টর নেটওয়ার্ক সেটিংস টেস্ট করুন">
-<!ENTITY aboutTor.success.label "Welcome to Tor Browser">
-<!ENTITY aboutTor.success2.label "Connected to the Tor network.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
+<!ENTITY aboutTor.success.label "টর ব্রাউজারে স্বাগতম">
+<!ENTITY aboutTor.success2.label "টর নেটওয়ার্কে সংযুক্ত">
+<!ENTITY aboutTor.success3.label "আপনি এখন নিরাপদে ইন্টারনেট ব্রাউজ করতে পারবেন।">
+<!ENTITY aboutTor.failure.label "কিছু ভুল হয়েছে!">
+<!ENTITY aboutTor.failure2.label "টর এই ব্রাউজারে কাজ করছে না">
-<!ENTITY aboutTor.search.label "খুঁজুন">
+<!ENTITY aboutTor.search.label "খুজুন">
<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com">
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
+<!ENTITY aboutTor.torInfo1.label "অতিরিক্ত তথ্য:">
+<!ENTITY aboutTor.torInfo2.label "দেশ এবং IP ঠিকানা:">
+<!ENTITY aboutTor.torInfo3.label "প্রস্থান নোড:">
+<!ENTITY aboutTor.torInfo4.label "এই সার্ভার দর্শক সম্পর্কে কোনও তথ্য লগ করে না।">
+<!ENTITY aboutTor.whatnextQuestion.label "এরপর কী?">
+<!ENTITY aboutTor.whatnextAnswer.label "Tor আপনি সমস্ত বেনামে ব্রাউজ করতে হবে না! আপনার পরিচয় নিরাপদ থাকে তা নিশ্চিত করতে আপনাকে আপনার ব্রাউজিং অভ্যাসগুলির কিছু পরিবর্তন করতে হবে।">
+<!ENTITY aboutTor.whatnext.label "নিরাপদে থাকার থাকার টিপস »">
<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
<!ENTITY aboutTor.torbrowser_user_manual.accesskey "M">
-<!ENTITY aboutTor.torbrowser_user_manual.label "Tor Browser User Manual">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
+<!ENTITY aboutTor.torbrowser_user_manual.label "টর ব্রাউজার ইউজার ম্যানুয়াল">
+<!ENTITY aboutTor.helpInfo1.label "তুমি সাহায্য করতে পার!">
+<!ENTITY aboutTor.helpInfo2.label "টর নেটওয়ার্ক দ্রুত এবং শক্তিশালী করতে আপনি অনেক উপায় আছে:">
+<!ENTITY aboutTor.helpInfo3.label "একটি টর্ রিলে নাড চালান »">
<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
+<!ENTITY aboutTor.helpInfo4.label "আপনার পরিষেবাগুলি স্বেচ্ছাসেবক »">
<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
+<!ENTITY aboutTor.helpInfo5.label "দান করুন »">
<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-<!ENTITY aboutTor.footer.label "টর প্রকল্পটি মার্কিন যুক্তরাষ্ট্রের ৫০১ (সি) (৩) অ-লাভজনক গবেষণা, উন্নয়ন এবং অনলাইন গোপনীয়তা এবং গোপনীয়তার শিক্ষায় নিবেদিত।">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
+<!ENTITY aboutTor.footer.label "টর প্রকল্পটি মার্কিন যুক্তরাষ্ট্রের 501 (সি) (3) অ-লাভজনক গবেষণা, উন্নয়ন এবং অনলাইন গোপনীয়তা এবং গোপনীয়তার শিক্ষা।">
+<!ENTITY aboutTor.learnMore.label "Tor প্রকল্প সম্পর্কে আরও জানুন »">
<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/bn_BD/aboutTor.dtd b/bn_BD/aboutTor.dtd
deleted file mode 100644
index f9226bf1a..000000000
--- a/bn_BD/aboutTor.dtd
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- - Copyright (c) 2015, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "Tor সম্পর্কে">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "সতর্কতা: এই ব্রাউজারটি পুরানো।">
-<!ENTITY aboutTor.outOfDateTorOff.label "এছাড়াও, এই ব্রাউজারটিও পুরানো।">
-<!ENTITY aboutTor.outOfDate2.label "Onion এর উপর ক্লিক করুন এবং তারপর টর ব্রাউজার আপডেট জন্য চেক নির্বাচন করুন।">
-
-<!ENTITY aboutTor.check.label "টর নেটওয়ার্ক সেটিংস টেস্ট করুন">
-
-<!ENTITY aboutTor.success.label "টর ব্রাউজারে স্বাগতম">
-<!ENTITY aboutTor.success2.label "টর নেটওয়ার্কে সংযুক্ত">
-<!ENTITY aboutTor.success3.label "আপনি এখন নিরাপদে ইন্টারনেট ব্রাউজ করতে পারবেন।">
-<!ENTITY aboutTor.failure.label "কিছু ভুল হয়েছে!">
-<!ENTITY aboutTor.failure2.label "টর এই ব্রাউজারে কাজ করছে না">
-
-<!ENTITY aboutTor.search.label "খুজুন">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com">
-
-<!ENTITY aboutTor.torInfo1.label "অতিরিক্ত তথ্য:">
-<!ENTITY aboutTor.torInfo2.label "দেশ এবং IP ঠিকানা:">
-<!ENTITY aboutTor.torInfo3.label "প্রস্থান নোড:">
-<!ENTITY aboutTor.torInfo4.label "এই সার্ভার দর্শক সম্পর্কে কোনও তথ্য লগ করে না।">
-<!ENTITY aboutTor.whatnextQuestion.label "এরপর কী?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor আপনি সমস্ত বেনামে ব্রাউজ করতে হবে না! আপনার পরিচয় নিরাপদ থাকে তা নিশ্চিত করতে আপনাকে আপনার ব্রাউজিং অভ্যাসগুলির কিছু পরিবর্তন করতে হবে।">
-<!ENTITY aboutTor.whatnext.label "নিরাপদে থাকার থাকার টিপস »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.torbrowser_user_manual.accesskey "M">
-<!ENTITY aboutTor.torbrowser_user_manual.label "টর ব্রাউজার ইউজার ম্যানুয়াল">
-<!ENTITY aboutTor.helpInfo1.label "তুমি সাহায্য করতে পার!">
-<!ENTITY aboutTor.helpInfo2.label "টর নেটওয়ার্ক দ্রুত এবং শক্তিশালী করতে আপনি অনেক উপায় আছে:">
-<!ENTITY aboutTor.helpInfo3.label "একটি টর্ রিলে নাড চালান »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "আপনার পরিষেবাগুলি স্বেচ্ছাসেবক »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "দান করুন »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "টর প্রকল্পটি মার্কিন যুক্তরাষ্ট্রের 501 (সি) (3) অ-লাভজনক গবেষণা, উন্নয়ন এবং অনলাইন গোপনীয়তা এবং গোপনীয়তার শিক্ষা।">
-<!ENTITY aboutTor.learnMore.label "Tor প্রকল্প সম্পর্কে আরও জানুন »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/ca_ES/aboutTor.dtd b/ca_ES/aboutTor.dtd
deleted file mode 100644
index da2703ec8..000000000
--- a/ca_ES/aboutTor.dtd
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- - Copyright (c) 2013, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "">
-<!ENTITY aboutTor.outOfDateTorOff.label "">
-<!ENTITY aboutTor.outOfDate2.label "">
-
-<!ENTITY aboutTor.check.label "">
-
-<!ENTITY aboutTor.success.label "">
-<!ENTITY aboutTor.success2.label "">
-<!ENTITY aboutTor.success3.label "">
-<!ENTITY aboutTor.failure.label "">
-<!ENTITY aboutTor.failure2.label "">
-<!ENTITY aboutTor.failure3prefix.label "">
-<!ENTITY aboutTor.failure3Link "">
-<!ENTITY aboutTor.failure3suffix.label "">
-
-<!ENTITY aboutTor.search.label "">
-
-<!-- Note to translators: the following 18 entities are used to construct a
- - sentence (either the SP or DDG entities are used, but not both at the
- - same time). In English, the sentence reads:
- - Search securely with Startpage.
- - or:
- - Search securely with DuckDuckGo.
- - The sentence contains two embedded links for "securely" and
- - the search engine ("Startpage" or "DuckDuckGo").
- -->
-<!ENTITY aboutTor.searchSPPost.link "">
-<!ENTITY aboutTor.searchDDGPost.link "">
-<!ENTITY aboutTor.searchSP.privacy.beforeLink.label "">
-<!ENTITY aboutTor.searchDDG.privacy.beforeLink.label "">
-<!ENTITY aboutTor.searchSP.privacy.label "">
-<!ENTITY aboutTor.searchDDG.privacy.label "">
-<!ENTITY aboutTor.searchSP.privacy.link "">
-<!ENTITY aboutTor.searchDDG.privacy.link "">
-<!ENTITY aboutTor.searchSP.privacy.afterLink.label "">
-<!ENTITY aboutTor.searchDDG.privacy.afterLink.label "">
-<!ENTITY aboutTor.searchSP.search.beforeLink.label "">
-<!ENTITY aboutTor.searchDDG.search.beforeLink.label "">
-<!ENTITY aboutTor.searchSP.search.label "">
-<!ENTITY aboutTor.searchDDG.search.label "">
-<!ENTITY aboutTor.searchSP.search.link "">
-<!ENTITY aboutTor.searchDDG.search.link "">
-<!ENTITY aboutTor.searchSP.search.afterLink.label "">
-<!ENTITY aboutTor.searchDDG.search.afterLink.label "">
-
-<!ENTITY aboutTor.torInfo1.label "">
-<!ENTITY aboutTor.torInfo2.label "">
-<!ENTITY aboutTor.torInfo3.label "">
-<!ENTITY aboutTor.torInfo4.label "">
-<!ENTITY aboutTor.whatnextQuestion.label "">
-<!ENTITY aboutTor.whatnextAnswer.label "">
-<!ENTITY aboutTor.whatnext.label "">
-<!ENTITY aboutTor.whatnext.link "">
-<!ENTITY aboutTor.helpInfo1.label "">
-<!ENTITY aboutTor.helpInfo2.label "">
-<!ENTITY aboutTor.helpInfo3.label "">
-<!ENTITY aboutTor.helpInfo3.link "">
-<!ENTITY aboutTor.helpInfo4.label "">
-<!ENTITY aboutTor.helpInfo4.link "">
-<!ENTITY aboutTor.helpInfo5.label "">
-<!ENTITY aboutTor.helpInfo5.link "">
-
-<!ENTITY aboutTor.footer.label "">
-<!ENTITY aboutTor.learnMore.label "">
-<!ENTITY aboutTor.learnMore.link "">
diff --git a/cs_CZ/aboutTor.dtd b/cs_CZ/aboutTor.dtd
deleted file mode 100644
index d44f1646a..000000000
--- a/cs_CZ/aboutTor.dtd
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- - Copyright (c) 2015, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "WARNING: this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Check for Tor Browser Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Welcome to Tor Browser">
-<!ENTITY aboutTor.success2.label "Connected to the Tor network.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchDCPost.link "https://search.disconnect.me/searchTerms/search?ses=Google&location_opt…">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/el_GR/aboutTor.dtd b/el_GR/aboutTor.dtd
deleted file mode 100644
index 7128bb829..000000000
--- a/el_GR/aboutTor.dtd
+++ /dev/null
@@ -1,48 +0,0 @@
-<!--
- - Copyright (c) 2014, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/es_NI/aboutTor.dtd b/es_NI/aboutTor.dtd
deleted file mode 100644
index 7128bb829..000000000
--- a/es_NI/aboutTor.dtd
+++ /dev/null
@@ -1,48 +0,0 @@
-<!--
- - Copyright (c) 2014, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/si/aboutTor.dtd b/si/aboutTor.dtd
deleted file mode 100644
index d44f1646a..000000000
--- a/si/aboutTor.dtd
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- - Copyright (c) 2015, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "WARNING: this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Check for Tor Browser Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Welcome to Tor Browser">
-<!ENTITY aboutTor.success2.label "Connected to the Tor network.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchDCPost.link "https://search.disconnect.me/searchTerms/search?ses=Google&location_opt…">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/sq_AL/aboutTor.dtd b/sq_AL/aboutTor.dtd
deleted file mode 100644
index d44f1646a..000000000
--- a/sq_AL/aboutTor.dtd
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- - Copyright (c) 2015, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "WARNING: this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Check for Tor Browser Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Welcome to Tor Browser">
-<!ENTITY aboutTor.success2.label "Connected to the Tor network.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchDCPost.link "https://search.disconnect.me/searchTerms/search?ses=Google&location_opt…">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/zh/aboutTor.dtd b/zh/aboutTor.dtd
deleted file mode 100644
index c1483a854..000000000
--- a/zh/aboutTor.dtd
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- - Copyright (c) 2013, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!-- Note to translators: the following 18 entities are used to construct a
- - sentence (either the SP or DDG entities are used, but not both at the
- - same time). In English, the sentence reads:
- - Search securely with Startpage.
- - or:
- - Search securely with DuckDuckGo.
- - The sentence contains two embedded links for "securely" and
- - the search engine ("Startpage" or "DuckDuckGo").
- -->
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchSP.privacy.beforeLink.label "Search ">
-<!ENTITY aboutTor.searchDDG.privacy.beforeLink.label "Search ">
-<!ENTITY aboutTor.searchSP.privacy.label "securely">
-<!ENTITY aboutTor.searchDDG.privacy.label "securely">
-<!ENTITY aboutTor.searchSP.privacy.link "https://startpage.com/eng/protect-privacy.html">
-<!ENTITY aboutTor.searchDDG.privacy.link "https://duckduckgo.com/privacy.html">
-<!ENTITY aboutTor.searchSP.privacy.afterLink.label "&nbsp;">
-<!ENTITY aboutTor.searchDDG.privacy.afterLink.label "&nbsp;">
-<!ENTITY aboutTor.searchSP.search.beforeLink.label "with ">
-<!ENTITY aboutTor.searchDDG.search.beforeLink.label "with ">
-<!ENTITY aboutTor.searchSP.search.label "Startpage">
-<!ENTITY aboutTor.searchDDG.search.label "DuckDuckGo">
-<!ENTITY aboutTor.searchSP.search.link "https://startpage.com/">
-<!ENTITY aboutTor.searchDDG.search.link "https://duckduckgo.com/">
-<!ENTITY aboutTor.searchSP.search.afterLink.label ".">
-<!ENTITY aboutTor.searchDDG.search.afterLink.label ".">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
diff --git a/zh_CN.GB2312/aboutTor.dtd b/zh_CN.GB2312/aboutTor.dtd
deleted file mode 100644
index c1483a854..000000000
--- a/zh_CN.GB2312/aboutTor.dtd
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- - Copyright (c) 2013, The Tor Project, Inc.
- - See LICENSE for licensing information.
- - vim: set sw=2 sts=2 ts=8 et syntax=xml:
- -->
-
-<!ENTITY aboutTor.title "About Tor">
-
-<!ENTITY aboutTor.outOfDateTorOn.label "HOWEVER, this browser is out of date.">
-<!ENTITY aboutTor.outOfDateTorOff.label "ALSO, this browser is out of date.">
-<!ENTITY aboutTor.outOfDate2.label "Click on the onion and then choose Download Tor Browser Bundle Update.">
-
-<!ENTITY aboutTor.check.label "Test Tor Network Settings">
-
-<!ENTITY aboutTor.success.label "Congratulations!">
-<!ENTITY aboutTor.success2.label "This browser is configured to use Tor.">
-<!ENTITY aboutTor.success3.label "You are now free to browse the Internet anonymously.">
-<!ENTITY aboutTor.failure.label "Something Went Wrong!">
-<!ENTITY aboutTor.failure2.label "Tor is not working in this browser.">
-<!ENTITY aboutTor.failure3prefix.label "For assistance, please contact ">
-<!ENTITY aboutTor.failure3Link "help(a)rt.torproject.org">
-<!ENTITY aboutTor.failure3suffix.label ".">
-
-<!ENTITY aboutTor.search.label "Search">
-
-<!-- Note to translators: the following 18 entities are used to construct a
- - sentence (either the SP or DDG entities are used, but not both at the
- - same time). In English, the sentence reads:
- - Search securely with Startpage.
- - or:
- - Search securely with DuckDuckGo.
- - The sentence contains two embedded links for "securely" and
- - the search engine ("Startpage" or "DuckDuckGo").
- -->
-<!ENTITY aboutTor.searchSPPost.link "https://startpage.com/rth/search">
-<!ENTITY aboutTor.searchDDGPost.link "https://duckduckgo.com/html/">
-<!ENTITY aboutTor.searchSP.privacy.beforeLink.label "Search ">
-<!ENTITY aboutTor.searchDDG.privacy.beforeLink.label "Search ">
-<!ENTITY aboutTor.searchSP.privacy.label "securely">
-<!ENTITY aboutTor.searchDDG.privacy.label "securely">
-<!ENTITY aboutTor.searchSP.privacy.link "https://startpage.com/eng/protect-privacy.html">
-<!ENTITY aboutTor.searchDDG.privacy.link "https://duckduckgo.com/privacy.html">
-<!ENTITY aboutTor.searchSP.privacy.afterLink.label "&nbsp;">
-<!ENTITY aboutTor.searchDDG.privacy.afterLink.label "&nbsp;">
-<!ENTITY aboutTor.searchSP.search.beforeLink.label "with ">
-<!ENTITY aboutTor.searchDDG.search.beforeLink.label "with ">
-<!ENTITY aboutTor.searchSP.search.label "Startpage">
-<!ENTITY aboutTor.searchDDG.search.label "DuckDuckGo">
-<!ENTITY aboutTor.searchSP.search.link "https://startpage.com/">
-<!ENTITY aboutTor.searchDDG.search.link "https://duckduckgo.com/">
-<!ENTITY aboutTor.searchSP.search.afterLink.label ".">
-<!ENTITY aboutTor.searchDDG.search.afterLink.label ".">
-
-<!ENTITY aboutTor.torInfo1.label "Additional Info:">
-<!ENTITY aboutTor.torInfo2.label "Country & IP Address:">
-<!ENTITY aboutTor.torInfo3.label "Exit Node:">
-<!ENTITY aboutTor.torInfo4.label "This server does not log any information about visitors.">
-<!ENTITY aboutTor.whatnextQuestion.label "What Next?">
-<!ENTITY aboutTor.whatnextAnswer.label "Tor is NOT all you need to browse anonymously! You may need to change some of your browsing habits to ensure your identity stays safe.">
-<!ENTITY aboutTor.whatnext.label "Tips On Staying Anonymous »">
-<!ENTITY aboutTor.whatnext.link "https://www.torproject.org/download/download.html.en#warning">
-<!ENTITY aboutTor.helpInfo1.label "You Can Help!">
-<!ENTITY aboutTor.helpInfo2.label "There are many ways you can help make the Tor Network faster and stronger:">
-<!ENTITY aboutTor.helpInfo3.label "Run a Tor Relay Node »">
-<!ENTITY aboutTor.helpInfo3.link "https://www.torproject.org/docs/tor-doc-relay.html.en">
-<!ENTITY aboutTor.helpInfo4.label "Volunteer Your Services »">
-<!ENTITY aboutTor.helpInfo4.link "https://www.torproject.org/getinvolved/volunteer.html.en">
-<!ENTITY aboutTor.helpInfo5.label "Make a Donation »">
-<!ENTITY aboutTor.helpInfo5.link "https://www.torproject.org/donate/donate.html.en">
-
-<!ENTITY aboutTor.footer.label "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy.">
-<!ENTITY aboutTor.learnMore.label "Learn more about The Tor Project »">
-<!ENTITY aboutTor.learnMore.link "https://www.torproject.org/about/overview.html.en">
1
0

[translation/tails-misc] #12095 remove dead language teams, merge bn and bn_BD before
by emmapeel@torproject.org 02 Aug '18
by emmapeel@torproject.org 02 Aug '18
02 Aug '18
commit 8057d9e3f68cffa6fb8698212f0507441d2dd958
Author: emma peel <emma.peel(a)riseup.net>
Date: Thu Aug 2 08:48:41 2018 +0000
#12095 remove dead language teams, merge bn and bn_BD before
---
af_ZA.po | 506 --------------------------------------------------
am_ET.po | 563 -------------------------------------------------------
bg_BG.po | 506 --------------------------------------------------
bn.po | 163 ++++++++++------
bn_BD.po | 402 ----------------------------------------
ca_ES.po | 455 ---------------------------------------------
cs_CZ.po | 565 --------------------------------------------------------
el_GR.po | 506 --------------------------------------------------
es_NI.po | 506 --------------------------------------------------
si.po | 562 -------------------------------------------------------
sq_AL.po | 562 -------------------------------------------------------
zh.po | 452 ---------------------------------------------
zh_CN.GB2312.po | 452 ---------------------------------------------
13 files changed, 111 insertions(+), 6089 deletions(-)
diff --git a/af_ZA.po b/af_ZA.po
deleted file mode 100644
index 635935acd..000000000
--- a/af_ZA.po
+++ /dev/null
@@ -1,506 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-04 08:50+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/torproject/language/af_ZA/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: af_ZA\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:43
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:44
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:39
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:40
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
-msgid "Network connection blocked?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:40
-msgid ""
-"It looks like you are blocked from the network. This may be related to the "
-"MAC spoofing feature. For more information, see the <a "
-"href=\\\"file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html#blocked\\\">MAC"
-" spoofing documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:30
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing. See the <a href='file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:39
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:40
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing. See the <a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:20
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:40
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/am_ET.po b/am_ET.po
deleted file mode 100644
index 9cccc01cd..000000000
--- a/am_ET.po
+++ /dev/null
@@ -1,563 +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:
-# Anteneh Tsegaye <tsegaye.anteneh(a)gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-04 11:56+0100\n"
-"PO-Revision-Date: 2016-01-06 09:25+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
-"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/otf/torproject/language/am_ET/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: am_ET\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "á¶á ááá áá"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:65
-#, 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/local/bin/electrum:14
-msgid "Persistence is disabled for Electrum"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:16
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:18
-msgid "Do you want to start Electrum anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:208
-msgid "_Open Text Editor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:252
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:303
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:305
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:307
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:309
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:311
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:313
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:366
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:367
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:368
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:400
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:403
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:433
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:496
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:507
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:513
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:517
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:557
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:560
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:578
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:591
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:593
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:621
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:623
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:751
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:772
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:822
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:828
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:853
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:18
-msgid "The <b>Claws Mail</b> persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:20
-msgid ""
-"If you have emails saved in <b>Claws Mail</b>, you should <a "
-"href='https://tails.boum.org/doc/anonymous_internet/claws_mail_to_icedove'>migrate"
-" your data</a> before starting <b>Icedove</b>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:71
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:74
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:19
-#: ../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:24
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:27
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:146
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:156
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:18
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:22
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:23
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:39
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:69
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:72
-msgid "Warning: non-free virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-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:79
-msgid "Learn more"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:29
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:30
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:31
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:32
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:33
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:35
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:47
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:54
-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:66
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:85
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:93
-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:105
-msgid ""
-"NetworkManager passed us garbage data when trying to deduce the clearnet DNS"
-" server."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:115
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:123
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:129
-msgid "Failed to configure browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:134
-msgid "Failed to run browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:35
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:36
-msgid ""
-"Something went wrong when I2P was starting. Check the logs in /var/log/i2p "
-"for more information."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:53
-msgid "I2P's router console is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:54
-msgid "You can now access I2P's router console in the I2P Browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:59
-msgid "I2P is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:60
-msgid ""
-"Eepsite tunnel not built within six minutes. Check the router console in the"
-" I2P Browser or the logs in /var/log/i2p for more information. Reconnect to "
-"the network to try again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:72
-msgid "I2P is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:73
-msgid "You can now access services on I2P."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:1
-msgid "Anonymous overlay network browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:2
-msgid "I2P Browser"
-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-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/bg_BG.po b/bg_BG.po
deleted file mode 100644
index 0cc4b606a..000000000
--- a/bg_BG.po
+++ /dev/null
@@ -1,506 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-04 08:50+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/torproject/language/bg_BG/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bg_BG\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:43
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:44
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:39
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:40
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
-msgid "Network connection blocked?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:40
-msgid ""
-"It looks like you are blocked from the network. This may be related to the "
-"MAC spoofing feature. For more information, see the <a "
-"href=\\\"file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html#blocked\\\">MAC"
-" spoofing documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:30
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing. See the <a href='file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:39
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:40
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing. See the <a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:20
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:40
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/bn.po b/bn.po
index d0fce074a..a69bad7d0 100644
--- a/bn.po
+++ b/bn.po
@@ -24,7 +24,7 @@ msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€"
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
msgid "You can now access the Internet."
-msgstr ""
+msgstr "àŠàŠªàŠšàŠ¿ àŠàŠàŠš àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
#: config/chroot_local-includes/etc/whisperback/config.py:66
#, python-format
@@ -42,10 +42,23 @@ msgid ""
"confirm that you are using Tails.\n"
"</p>\n"
msgstr ""
+"<h1> àŠàŠªàŠšàŠŸàŠ° àŠ¬àŠŸàŠ àŠ àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠ®àŠŸàŠŠà§àа àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠàаà§àŠš! </ h1>\n"
+"<p> <a href=\"%s\"> àŠàŠ®àŠŸàŠŠà§àа àŠ¬àŠŸàŠ àŠ°àŠ¿àŠªà§àаà§àŠàŠ¿àŠ àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠŸàŠ¬àŠ²à§ </a> àŠªàŠ¡àŠŒà§àŠšà¥€ </ p>\n"
+"<p> <strong> àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àа àŠ¬à§àŠ¶àŠ¿ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ€àŠ¥à§àН àŠ
àŠšà§àŠ€àŠ°à§àŠà§àŠà§àŠ€ àŠàŠ°àŠ¬à§àŠš àŠšàŠŸ\n"
+" </ strong> </ p &>\n"
+"<h2> àŠàŠ®àŠŸàŠŠà§àа àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠŠà§àŠàŠ¯àŠŒàŠŸàŠ° àŠ¬àŠ¿àŠ·àŠ¯àŠŒà§ </ h2>\n"
+"<P> àŠ¯à§\n"
+"àŠàŠ®àŠŸàŠŠà§àа àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àŠ°àŠŠàŠŸàŠš àŠàŠ®àŠ°àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠ¬à§àŠ¯àŠŸàŠà§àŠ¯àŠŸ àŠàŠ°àŠ€à§ àŠ¯à§àŠàŠŸàŠ¯à§àŠ àŠàŠ°àŠ€à§ "
+"àŠàŠ°àŠ¬à¥€ àŠàŠ\n"
+"àŠàŠ®àŠ°àŠŸ àŠ¯à§ àŠ°àŠ¿àŠªà§àаà§àŠàŠà§àŠ²àŠ¿ àŠªà§àŠ¯àŠŒà§àŠàŠ¿ àŠ€àŠŸàŠ° àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ àŠ°àŠ¿àŠªà§àаà§àŠàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš àŠ¹àŠ¯àŠŒ\n"
+"àŠà§àŠš àŠ¯à§àŠàŠŸàŠ¯à§àŠà§àа àŠ€àŠ¥à§àН àŠ¬à§àŠ¯àŠ€à§àŠ€ àŠ
àŠ°à§àŠ¥àŠ¹à§àŠš àŠ¹àŠ¯àŠŒà¥€ àŠ
àŠšà§àŠ¯àŠŠàŠ¿àŠà§ àŠàŠàŠ¿ àŠàŠàŠ¿ àŠªà§àŠ°àŠŠàŠŸàŠš àŠàаà§\n"
+"àŠàŠªàŠšàŠŸàŠ° àŠàŠ®à§àŠàв àŠ¬àŠŸ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªà§àŠ°àŠŠàŠŸàŠšàŠàŠŸàŠ°à§, àŠ¯à§àŠ®àŠš eavesdroppers àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠžà§àНà§àŠ\n"
+"àŠàŠªàŠšàŠ¿ àŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠŸ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš\n"
+"? </ P>\n"
#: config/chroot_local-includes/usr/local/bin/electrum:57
msgid "Persistence is disabled for Electrum"
-msgstr ""
+msgstr "àŠ
àŠ§à§àŠ¯àŠ¬àŠžàŠŸàŠ¯àŠŒ àŠàŠšà§àН àŠàŠžà§àŠà§àŠ°àŠŸàŠ® àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§"
#: config/chroot_local-includes/usr/local/bin/electrum:59
msgid ""
@@ -53,62 +66,67 @@ msgid ""
"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
"persistence feature is activated."
msgstr ""
+"àŠ¯àŠàŠš àŠàŠªàŠšàŠ¿ àŠàŠŸàŠàŠ²àŠž àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠŸàŠ²à§ àŠàŠ°àŠ¬à§àŠš, àŠ€àŠàŠš àŠàŠªàŠšàŠŸàŠ° àŠ¬àŠ¿àŠàŠàŠ¯àŠŒà§àŠš àŠàŠ¯àŠŒàŠŸàŠ²à§àŠ àŠžàŠ¹ àŠžàŠ¬ àŠàвà§àŠà§àŠà§àŠ°àŠŸàŠ®à§àа "
+"àŠ¡àŠŸàŠàŠŸ àŠ¹àŠŸàŠ°àŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€ àŠàŠàŠ¿ àŠŠà§àŠ¢àŠŒàŠàŠŸàŠ¬à§ àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠàŠšà§àŠàŠ¿àŠà§àаà§àŠà§ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН àŠžà§àŠªàŠŸàŠ°àŠ¿àŠ¶ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠ¯àŠàŠš "
+"àŠ€àŠŸàŠ° àŠŠà§àŠ¢àŠŒàŠ€àŠŸ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà¥€"
#: config/chroot_local-includes/usr/local/bin/electrum:60
msgid "Do you want to start Electrum anyway?"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš Electrum àŠ¯àŠŸàŠ¹àŠŸàŠ àŠ¹àŠàŠ àŠšàŠŸ àŠà§àŠš?"
#: config/chroot_local-includes/usr/local/bin/electrum:63
#: config/chroot_local-includes/usr/local/bin/liferea:33
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
msgid "_Launch"
-msgstr ""
+msgstr "_Launch"
#: config/chroot_local-includes/usr/local/bin/electrum:64
#: config/chroot_local-includes/usr/local/bin/liferea:32
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
msgid "_Exit"
-msgstr ""
+msgstr "_Exit"
#: config/chroot_local-includes/usr/local/bin/liferea:18
msgid "Liferea is deprecated"
-msgstr ""
+msgstr "Liferea àŠ
àŠªà§àаàŠàŠ²àŠ¿àŠ€"
#: config/chroot_local-includes/usr/local/bin/liferea:19
msgid "Do you wish to start Liferea anyway?"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠ²àŠŸàŠàŠ«àŠ°àŠ¿àŠ¯àŠŒàŠŸ àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš?"
#: config/chroot_local-includes/usr/local/bin/liferea:21
msgid ""
"Due to security concerns the Liferea feed reader will be removed from Tails "
"by the end of 2018. Please migrate your feeds to Thunderbird."
msgstr ""
+"àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸàŠàŠšàŠ¿àŠ€ àŠàŠŸàŠ°àŠ£à§ 2018 àŠžàŠŸàŠ²à§àа àŠ¶à§àŠ· àŠšàŠŸàŠàŠŸàŠŠ àŠ²àŠŸàŠàŠ«àŠ²àŠ°àŠ¿ àŠ«àŠ¿àŠ¡ àŠ°àŠ¿àŠ¡àŠŸàŠ°àŠà§ àŠàŠŸàŠ² àŠ¥à§àŠà§ àŠžàŠ°àŠ¿àŠ¯àŠŒà§ "
+"àŠŠà§àŠàŠ¯àŠŒàŠŸ àŠ¹àŠ¬à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠ«àŠ¿àŠ¡ àŠ¥àŠŸàŠšà§àŠ¡àŠŸàŠ°àŠ¬àŠŸàŠ°à§àŠ¡ àŠ àŠžà§àŠ¥àŠŸàŠšàŠŸàŠšà§àŠ€àŠ° àŠàаà§àŠšà¥€"
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Restart"
-msgstr ""
+msgstr "àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠŸàŠ²à§ àŠàаà§àŠš"
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
msgid "Lock screen"
-msgstr ""
+msgstr "àŠ²àŠ àŠžà§àŠà§àŠ°àŠ¿àŠš"
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
msgid "Power Off"
-msgstr ""
+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 ""
+msgstr "Tails"
#: 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 ""
+msgstr "Tails àŠžàŠ®à§àŠªàŠ°à§àŠà§"
#: config/chroot_local-includes/usr/local/bin/tails-about:35
msgid "The Amnesic Incognito Live System"
-msgstr ""
+msgstr "àŠ
à§àŠ¯àŠŸàŠ®à§àŠžàŠ¿àŠ àŠàŠŠà§àŠ®àŠ¬à§àŠ¶à§ àŠ²àŠŸàŠàŠ àŠžàŠ¿àŠžà§àŠà§àŠ®"
#: config/chroot_local-includes/usr/local/bin/tails-about:36
#, python-format
@@ -116,33 +134,37 @@ msgid ""
"Build information:\n"
"%s"
msgstr ""
+"àŠ€àŠ¥à§àН àŠ€à§àŠ°àŠ¿ àŠàаà§àŠš::\n"
+"%s"
#: config/chroot_local-includes/usr/local/bin/tails-about:54
msgid "not available"
-msgstr ""
+msgstr "àŠªàŠŸàŠàŠ¯àŠŒàŠŸ àŠ¯àŠŸàŠ¯àŠŒ àŠšàŠŸ"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:170
msgid "Your additional software installation failed"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠžà§àŠàвà§àŠ¶àŠš àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:171
msgid ""
"The installation failed. Please check your additional software "
"configuration, or read the system log to understand better the problem."
msgstr ""
+"àŠàŠšàŠžà§àŠàвà§àŠ¶àŠš àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠš àŠà§àŠ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠ° "
+"àŠ¬à§àŠàŠ€à§ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠ àŠªà§à§àŠšà¥€"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:177
msgid "Your additional software are installed"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠ¹à§à§àŠà§à¥€"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:178
msgid "Your additional software are ready to use."
-msgstr ""
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠªà§àŠ°àŠžà§àŠ€à§àŠ€à¥€"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:194
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:204
msgid "Your additional software upgrade failed"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠªàŠà§àаà§àŠ¡ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹à§à§àŠà§"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:195
msgid ""
@@ -150,14 +172,17 @@ msgid ""
"Please check your network connection, try to restart Tails, or read the "
"system log to understand better the problem."
msgstr ""
+"àŠàŠªàŠà§àаà§àŠ¡à§àа àŠà§àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠàŠŸàŠ°àŠ£à§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ "
+"àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠà§àŠ àŠàаà§àŠš, àŠàŠ¯àŠŒàŠ²à§àŠ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠàŠ¿ "
+"àŠàŠŸàŠ²àŠàŠŸàŠ¬à§ àŠ¬à§àŠàŠŸàŠ° àŠàŠšà§àН àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠàŠàŠ¿ àŠªàŠ¡àŠŒà§àŠšà¥€"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:201
msgid "Your additional software are up to date"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠª àŠà§ àŠ¡à§àŠ"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:202
msgid "The upgrade was successful."
-msgstr ""
+msgstr "àŠàŠªàŠà§àаà§àŠ¡ àŠžàŠ«àŠ² àŠ¹à§à§àŠà§à¥€"
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:205
msgid ""
@@ -165,33 +190,38 @@ msgid ""
"your network connection, try to restart Tails, or read the system log to "
"understand better the problem."
msgstr ""
+"àŠàŠªàŠà§àаà§àŠ¡ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§ àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠàŠŸàŠ°àŠ£à§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° "
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠà§àŠ àŠàаà§àŠš, àŠàŠ¯àŠŒàŠ²à§àŠ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠàŠ¿ àŠàŠŸàŠ²àŠàŠŸàŠ¬à§ "
+"àŠ¬à§àŠàŠŸàŠ° àŠàŠšà§àН àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠàŠàŠ¿ àŠªàŠ¡àŠŒà§àŠšà¥€"
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr ""
+msgstr "àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠàŠ¡àŠŒàŠ¿àŠà§ àŠžàŠ¿àŠà§àŠà§àаà§àŠšàŠŸàŠàŠ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§"
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
msgstr ""
+"àŠàа àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠàŠŸàŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠžàŠ àŠ¿àŠ àŠàŠ¡àŠŒàŠ¿ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš, àŠ¬àŠ¿àŠ¶à§àŠ· àŠàŠ°à§ àŠ²à§àŠàŠŸàŠšà§ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° "
+"àŠàŠšà§àН àŠ
àŠšà§àŠà§àŠ°àŠ¹àŠªà§àаà§àŠ¬àŠ àŠ
àŠªà§àŠà§àŠ·àŠŸ àŠàаà§àŠš..."
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr ""
+msgstr "àŠàŠ¡àŠŒàŠ¿ àŠžàŠ¿àŠà§àŠà§àаà§àŠšàŠŸàŠàŠ àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥!"
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
-msgstr ""
+msgstr "Tails àŠàа àŠàŠ àŠžàŠàŠžà§àŠàŠ°àŠ£ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ¬àŠ¿àŠ·àŠ¯àŠŒ àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠ¹àŠ¯àŠŒà§àŠà§:"
#: config/chroot_local-includes/usr/local/bin/tails-security-check:134
msgid "Known security issues"
-msgstr ""
+msgstr "àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ¬àŠ¿àŠ·àŠ¯àŠŒ"
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
#, sh-format
msgid "Network card ${nic} disabled"
-msgstr ""
+msgstr "àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ ${nic} àŠ
àŠà§àŠ·àŠ®"
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
#, sh-format
@@ -199,10 +229,13 @@ msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ ${nic_name} (${nic}) àŠàŠšà§àН MAC àŠžà§àŠªà§àŠ«àŠ¿àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§ àŠ€àŠŸàŠ àŠàŠàŠ¿ "
+"àŠ
àŠžà§àŠ¥àŠŸàŠ¯àŠŒà§àŠàŠŸàŠ¬à§ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§à¥€\n"
+"àŠàŠªàŠšàŠ¿ TailsàŠªà§àŠšàŠ°à§àŠžà§àŠàŠšàŠŸ àŠàŠ¬àŠ àŠ®à§àŠ¯àŠŸàŠ spoofing àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
msgid "All networking disabled"
-msgstr ""
+msgstr "àŠžàŠ®àŠžà§àŠ€ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ"
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
#, sh-format
@@ -210,6 +243,9 @@ msgid ""
"MAC spoofing 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 spoofing."
msgstr ""
+"àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ ${nic_name} (${nic}) àŠàŠšà§àН MAC àŠžà§àŠªà§àŠ«àŠ¿àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠ€à§àаà§àŠàŠ¿ àŠªà§àŠšàŠ°à§àŠŠà§àŠ§àŠŸàŠ°à§àа "
+"àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ€àŠŸàŠ àŠžàŠ®àŠžà§àŠ€ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà¥€\n"
+"àŠàŠªàŠšàŠ¿ àŠªà§àŠà§àŠ àŠªà§àŠšàŠ°à§àŠžà§àŠàŠšàŠŸ àŠàŠ¬àŠ àŠ®à§àŠ¯àŠŸàŠ spoofing àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:109
msgid "Lock Screen"
@@ -222,11 +258,11 @@ msgstr "Cancel"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:124
msgid "Screen Locker"
-msgstr ""
+msgstr "àŠžà§àŠà§àŠ°àŠ¿àŠš àŠ²àŠàŠŸàŠ°"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:130
msgid "Set up a password to unlock the screen."
-msgstr ""
+msgstr "àŠžà§àŠà§àŠ°àŠ¿àŠš àŠàŠšàŠ²àŠ àŠàŠ°àŠ€à§ àŠàŠàŠàŠ¿ àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡ àŠžà§àŠ àŠàŠª àŠàаà§àŠšà¥€"
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:135
msgid "Password"
@@ -248,11 +284,20 @@ msgid ""
"Or do a manual upgrade.\n"
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
+"\"<b>àŠàŠªàŠà§àаà§àŠ¡ àŠŠà§àŠàŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠ²àŠ¬à§àЧ àŠ¯àŠ¥à§àŠ·à§àŠ àŠ®à§àŠ®àŠ°àŠ¿ àŠšà§àŠà¥€</b>\n"
+"\n"
+"àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš àŠ¯à§ àŠàŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠŸàŠàв àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠžàŠšà§àŠ€à§àŠ·à§àŠ àŠàаà§àŠš\n"
+"àŠŠà§àŠà§àŠš: file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"àŠàŠ¬àŠŸàŠ° àŠàŠªàŠà§àаà§àŠ¡à§àа àŠàŠšà§àН àŠªàŠ°à§àŠà§àŠ·àŠŸ àŠàŠ°àŠ€à§ àŠàŠŸàŠàв àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠšà¥€\n"
+"\n"
+"àŠ¬àŠŸ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ² àŠàŠªàŠà§àаà§àŠ¡ àŠàŠ¿à¥€\n"
+"àŠŠà§àŠà§àŠš https://tails.boum.org/doc/first_steps/upgrade#manual \""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
-msgstr ""
+msgstr "àŠ€à§àаà§àŠàŠ¿:"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
@@ -261,17 +306,19 @@ msgstr "àŠžàŠ®àŠžà§àŠ¯àŠŸ"
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
msgid "Warning: virtual machine detected!"
-msgstr ""
+msgstr "àŠžàŠ€àŠ°à§àŠàŠ€àŠŸ: àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ² àŠ®à§àŠ¶àŠ¿àŠš àŠžàŠšàŠŸàŠà§àŠ€!"
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:73
msgid ""
"Both the host operating system and the virtualization software are able to "
"monitor what you are doing in Tails."
msgstr ""
+"àŠàŠàŠ¯àŠŒ àŠ¹à§àŠžà§àŠ àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¬àŠ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ²àŠŸàŠàŠà§àŠ¶àŠš àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°àŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠàŠŸàŠàвàŠà§àŠ²àŠ¿àŠ€à§ "
+"àŠàаàŠà§àŠš àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠà§àŠ·àŠ£ àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ®à¥€"
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:76
msgid "Warning: non-free virtual machine detected!"
-msgstr ""
+msgstr "àŠžàŠ€àŠ°à§àŠàŠ€àŠŸ: àŠ
-àŠ®à§àŠà§àŠ€ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ² àŠ®à§àŠ¶àŠ¿àŠš àŠžàŠšàŠŸàŠà§àŠ€!"
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:78
msgid ""
@@ -280,6 +327,9 @@ msgid ""
"trustworthy, for both the host operating system and the virtualization "
"software."
msgstr ""
+"àŠàŠàŠ¯àŠŒ àŠ¹à§àŠžà§àŠ àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¬àŠ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ²àŠŸàŠàŠà§àŠ¶àŠš àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°àŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠàŠŸàŠàвàŠà§àŠ²àŠ¿àŠ€à§ "
+"àŠàаàŠà§àŠš àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠà§àŠ·àŠ£ àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ®à¥€ àŠ¹à§àŠžà§àŠ àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¬àŠ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ²àŠŸàŠàŠà§àŠ¶àŠš àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° "
+"àŠàŠàŠ¯àŠŒà§àа àŠàŠšà§àН àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠ«à§àŠ°àŠ¿ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠšàŠ¿àŠ°à§àŠàŠ°àŠ¯à§àŠà§àН àŠ¬àŠ²à§ àŠ®àŠšà§ àŠàŠ°àŠŸ àŠ¯à§àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:83
msgid "Learn more"
@@ -287,19 +337,19 @@ msgstr "àŠàŠ°àŠ àŠàŠŸàŠšà§àŠš"
#: config/chroot_local-includes/usr/local/bin/tor-browser:43
msgid "Tor is not ready"
-msgstr ""
+msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€ àŠšàŠŸ"
#: config/chroot_local-includes/usr/local/bin/tor-browser:44
msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
+msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€ àŠšàŠŸ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¯àŠŸàŠàйà§àŠ àŠ¶à§àаà§?"
#: config/chroot_local-includes/usr/local/bin/tor-browser:45
msgid "Start Tor Browser"
-msgstr ""
+msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¶à§àŠ°à§ àŠàаà§àŠš"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
+msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠžàŠ€à§àŠ¯àŠ¿àŠ àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš?"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
msgid ""
@@ -307,74 +357,83 @@ msgid ""
"use the Unsafe Browser if necessary, for example\\nif you have to login or "
"register to activate your Internet connection."
msgstr ""
+"àŠ
àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠ®àŠ§à§àŠ¯à§ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠà§àŠ°àŠ¿àŠ¯àŠŒàŠŸàŠàŠ²àŠŸàŠªàŠàŠ¿ <b> àŠ¬à§àŠšàŠŸàŠ®à§ àŠšàŠ¯àŠŒ </ b>ी \\ N "
+"àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš àŠ¹àŠ²à§ àŠ
àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš, àŠàŠŠàŠŸàŠ¹àŠ°àŠ£àŠžà§àŠ¬àŠ°à§àŠª \\ n àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ "
+"àŠžàŠàНà§àŠ àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠà§ àŠ²àŠàŠàŠš àŠ¬àŠŸ àŠšàŠ¿àŠ¬àŠšà§àŠ§àŠš àŠàŠ°àŠ€à§ àŠ¹àŠ¯àŠŒà¥€"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
msgid "Starting the Unsafe Browser..."
-msgstr ""
+msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¶à§àŠ°à§ àŠ¹àŠà§àŠà§ ..."
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
msgid "This may take a while, so please be patient."
-msgstr ""
+msgstr "àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠžàŠ®àŠ¯àŠŒ àŠšàŠ¿àŠ€à§ àŠªàŠŸàŠ°à§, àŠ€àŠŸàŠ àŠ§à§àаà§àН àŠ¥àŠŸàŠà§àŠšà¥€"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
msgid "Shutting down the Unsafe Browser..."
-msgstr ""
+msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬àŠšà§àЧ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ ..."
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
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:70
msgid "Failed to restart Tor."
-msgstr ""
+msgstr "àŠàа àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
msgid "Unsafe Browser"
-msgstr ""
+msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:92
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:100
msgid "Failed to setup chroot."
-msgstr ""
+msgstr "àŠžà§àŠàŠàŠª àŠà§àаà§àŠà§àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:105
msgid "Failed to configure browser."
-msgstr ""
+msgstr "àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:111
msgid ""
"No DNS server was obtained through DHCP or manually configured in "
"NetworkManager."
msgstr ""
+"àŠà§àŠšàŠ DNS àŠžàŠŸàŠ°à§àŠàŠŸàŠ° DHCP àŠàа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠªàŠŸàŠàŠ¯àŠŒàŠŸ àŠ¯àŠŸàŠ¯àŠŒ àŠšàŠŸ àŠ¬àŠŸ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²àŠ¿ àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§ "
+"NetworkManagerी"
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
msgid "Failed to run browser."
-msgstr ""
+msgstr "àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²àŠŸàŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
-msgstr ""
+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 ""
+msgstr "àŠàŠŸàŠàв àŠ¡àŠà§àŠ®à§àŠšà§àŠà§àŠ¶àŠš"
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
msgid "Learn how to use Tails"
-msgstr ""
+msgstr "Tails àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ¿àŠàŠŸàŠ¬à§ àŠ¶àŠ¿àŠà§àŠš?"
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
msgid "Learn more about Tails"
-msgstr ""
+msgstr "Tails àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠàŠ°àŠ àŠàŠŸàŠšà§àŠš"
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
msgid "Tor Browser"
@@ -382,20 +441,20 @@ msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
msgid "Anonymous Web Browser"
-msgstr ""
+msgstr "àŠšàŠŸàŠ®àŠ¬àŠ¿àŠ¹à§àŠš àŠàŠ¯àŠŒà§àЬ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
msgid "Browse the World Wide Web without anonymity"
-msgstr ""
+msgstr "àŠà§àŠªàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠàŠŸàŠ¡àŠŒàŠŸàŠ àŠàŠ¯àŠŒàŠŸàŠ°à§àвà§àŠ¡ àŠàŠ¯àŠŒàŠŸàŠàŠ¡ àŠàŠ¯àŠŒà§àЬ àŠ¬à§àŠ°àŠŸàŠàŠ àŠàаà§àŠš"
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
msgid "Unsafe Web Browser"
-msgstr ""
+msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠàŠ¯àŠŒà§àЬ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
-msgstr ""
+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 ""
+msgstr "àŠàŠàŠàŠ¿ àŠ°à§àŠ àŠàŠŸàŠ°à§àŠ®àŠ¿àŠšàŠŸàŠ² àŠ¶à§àŠ°à§ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН, àŠàŠªàŠšàŠ¿ àŠªà§àŠ°àŠ®àŠŸàŠ£à§àŠàŠ°àŠ£ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà¥€"
diff --git a/bn_BD.po b/bn_BD.po
deleted file mode 100644
index 3c3c1b658..000000000
--- a/bn_BD.po
+++ /dev/null
@@ -1,402 +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:
-# Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2018
-# Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>, 2017
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-24 08:44+0800\n"
-"PO-Revision-Date: 2018-07-24 04:54+0000\n"
-"Last-Translator: Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>\n"
-"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/otf/torproject/language/bn_BD/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bn_BD\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr "àŠàŠªàŠšàŠ¿ àŠàŠàŠš àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠ
à§àŠ¯àŠŸàŠà§àŠžà§àŠž àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€"
-
-#: config/chroot_local-includes/etc/whisperback/config.py:66
-#, 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 "<h1> àŠàŠªàŠšàŠŸàŠ° àŠ¬àŠŸàŠ àŠ àŠ¿àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠ®àŠŸàŠŠà§àа àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠàаà§àŠš! </ h1>\n<p> <a href=\"%s\"> àŠàŠ®àŠŸàŠŠà§àа àŠ¬àŠŸàŠ àŠ°àŠ¿àŠªà§àаà§àŠàŠ¿àŠ àŠšàŠ¿àŠ°à§àŠŠà§àŠ¶àŠŸàŠ¬àŠ²à§ </a> àŠªàŠ¡àŠŒà§àŠšà¥€ </ p>\n<p> <strong> àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àа àŠ¬à§àŠ¶àŠ¿ àŠ¬à§àНàŠà§àŠ€àŠ¿àŠàŠ€ àŠ€àŠ¥à§àН àŠ
àŠšà§àŠ€àŠ°à§àŠà§àŠà§àŠ€ àŠàŠ°àŠ¬à§àŠš àŠšàŠŸ\n </ strong> </ p &>\n<h2> àŠàŠ®àŠŸàŠŠà§àа àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠŠà§àŠàŠ¯àŠŒàŠŸàŠ° àŠ¬àŠ¿àŠ·àŠ¯àŠŒà§ </ h2>\n<P> àŠ¯à§\nàŠàŠ®àŠŸàŠŠà§àа àŠàŠàŠàŠ¿ àŠàŠ®à§àв àŠ àŠ¿àŠàŠŸàŠšàŠŸ àŠªà§àŠ°àŠŠàŠŸàŠš àŠàŠ®àŠ°àŠŸ àŠàŠªàŠšàŠŸàŠà§ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠ¬à§àŠ¯àŠŸàŠà§àŠ¯àŠŸ àŠàŠ°àŠ€à§ àŠ¯à§àŠàŠŸàŠ¯à§àŠ àŠàŠ°àŠ€à§ àŠàŠ°àŠ¬à¥€ àŠàŠ\nàŠàŠ®àŠ°àŠŸ àŠ¯à§ àŠ°àŠ¿àŠªà§àаà§àŠàŠà§àŠ²àŠ¿ àŠªà§àŠ¯àŠŒà§àŠàŠ¿ àŠ€àŠŸàŠ° àŠ¬à§àŠ¶àŠ¿àŠ°àŠàŠŸàŠ àŠ°àŠ¿àŠªà§àаà§àŠàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠªà§àŠ°àŠ¯àŠŒà§àŠ
àŠš àŠ¹àŠ¯àŠŒ\nàŠà§àŠš àŠ¯à§àŠàŠŸàŠ¯à§àŠà§àа àŠ€àŠ¥à§àН àŠ¬à§àŠ¯àŠ€à§àŠ€ àŠ
àŠ°à§àŠ¥àŠ¹à§àŠš àŠ¹àŠ¯àŠŒà¥€ àŠ
àŠšà§àŠ¯àŠŠàŠ¿àŠà§ àŠàŠàŠ¿ àŠàŠàŠ¿ àŠªà§àŠ°àŠŠàŠŸàŠš àŠàаà§\nàŠàŠªàŠšàŠŸàŠ° àŠàŠ®à§àŠàв àŠ¬àŠŸ àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠªà§àŠ°àŠŠàŠŸàŠšàŠàŠŸàŠ°à§, àŠ¯à§àŠ®àŠš eavesdroppers àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠžà§àНà§àŠ\nàŠàŠªàŠšàŠ¿ àŠªà§àаà§àŠ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаàŠà§àŠš àŠ€àŠŸ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš\n? </ P>\n"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:57
-msgid "Persistence is disabled for Electrum"
-msgstr "àŠ
àŠ§à§àŠ¯àŠ¬àŠžàŠŸàŠ¯àŠŒ àŠàŠšà§àН àŠàŠžà§àŠà§àŠ°àŠŸàŠ® àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:59
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr "àŠ¯àŠàŠš àŠàŠªàŠšàŠ¿ àŠàŠŸàŠàŠ²àŠž àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠŸàŠ²à§ àŠàŠ°àŠ¬à§àŠš, àŠ€àŠàŠš àŠàŠªàŠšàŠŸàŠ° àŠ¬àŠ¿àŠàŠàŠ¯àŠŒà§àŠš àŠàŠ¯àŠŒàŠŸàŠ²à§àŠ àŠžàŠ¹ àŠžàŠ¬ àŠàвà§àŠà§àŠà§àŠ°àŠŸàŠ®à§àа àŠ¡àŠŸàŠàŠŸ àŠ¹àŠŸàŠ°àŠ¿àŠ¯àŠŒà§ àŠ¯àŠŸàŠ¬à§à¥€ àŠàŠàŠ¿ àŠŠà§àŠ¢àŠŒàŠàŠŸàŠ¬à§ àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠàŠšà§àŠàŠ¿àŠà§àаà§àŠà§ àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН àŠžà§àŠªàŠŸàŠ°àŠ¿àŠ¶ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒ àŠ¯àŠàŠš àŠ€àŠŸàŠ° àŠŠà§àŠ¢àŠŒàŠ€àŠŸ àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àН àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà¥€"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:60
-msgid "Do you want to start Electrum anyway?"
-msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš Electrum àŠ¯àŠŸàŠ¹àŠŸàŠ àŠ¹àŠàŠ àŠšàŠŸ àŠà§àŠš?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:63
-#: config/chroot_local-includes/usr/local/bin/liferea:33
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Launch"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-#: config/chroot_local-includes/usr/local/bin/liferea:32
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "_Exit"
-
-#: config/chroot_local-includes/usr/local/bin/liferea:18
-msgid "Liferea is deprecated"
-msgstr "Liferea àŠ
àŠªà§àаàŠàŠ²àŠ¿àŠ€"
-
-#: config/chroot_local-includes/usr/local/bin/liferea:19
-msgid "Do you wish to start Liferea anyway?"
-msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠ²àŠŸàŠàŠ«àŠ°àŠ¿àŠ¯àŠŒàŠŸ àŠ¶à§àŠ°à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš?"
-
-#: config/chroot_local-includes/usr/local/bin/liferea:21
-msgid ""
-"Due to security concerns the Liferea feed reader will be removed from Tails "
-"by the end of 2018. Please migrate your feeds to Thunderbird."
-msgstr "àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸàŠàŠšàŠ¿àŠ€ àŠàŠŸàŠ°àŠ£à§ 2018 àŠžàŠŸàŠ²à§àа àŠ¶à§àŠ· àŠšàŠŸàŠàŠŸàŠŠ àŠ²àŠŸàŠàŠ«àŠ²àŠ°àŠ¿ àŠ«àŠ¿àŠ¡ àŠ°àŠ¿àŠ¡àŠŸàŠ°àŠà§ àŠàŠŸàŠ² àŠ¥à§àŠà§ àŠžàŠ°àŠ¿àŠ¯àŠŒà§ àŠŠà§àŠàŠ¯àŠŒàŠŸ àŠ¹àŠ¬à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠ«àŠ¿àŠ¡ àŠ¥àŠŸàŠšà§àŠ¡àŠŸàŠ°àŠ¬àŠŸàŠ°à§àŠ¡ àŠ àŠžà§àŠ¥àŠŸàŠšàŠŸàŠšà§àŠ€àŠ° àŠàаà§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠŸàŠ²à§ àŠàаà§àŠš"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
-msgstr "àŠ²àŠ àŠžà§àŠà§àŠ°àŠ¿àŠš"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
-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 "Tails"
-
-#: 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 "Tails àŠžàŠ®à§àŠªàŠ°à§àŠà§"
-
-#: 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 "àŠ€àŠ¥à§àН àŠ€à§àŠ°àŠ¿ àŠàаà§àŠš::\n%s"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-msgstr "àŠªàŠŸàŠàŠ¯àŠŒàŠŸ àŠ¯àŠŸàŠ¯àŠŒ àŠšàŠŸ"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:170
-msgid "Your additional software installation failed"
-msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠžà§àŠàвà§àŠ¶àŠš àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:171
-msgid ""
-"The installation failed. Please check your additional software "
-"configuration, or read the system log to understand better the problem."
-msgstr "àŠàŠšàŠžà§àŠàвà§àŠ¶àŠš àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ°à§àŠ¶àŠš àŠà§àŠ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠ° àŠ¬à§àŠàŠ€à§ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠ àŠªà§à§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:177
-msgid "Your additional software are installed"
-msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠ¹à§à§àŠà§à¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:178
-msgid "Your additional software are ready to use."
-msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠªà§àŠ°àŠžà§àŠ€à§àŠ€à¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:194
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:204
-msgid "Your additional software upgrade failed"
-msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠªàŠà§àаà§àŠ¡ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹à§à§àŠà§"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:195
-msgid ""
-"The check for upgrades failed. This might be due to a network problem. "
-"Please check your network connection, try to restart Tails, or read the "
-"system log to understand better the problem."
-msgstr "àŠàŠªàŠà§àаà§àŠ¡à§àа àŠà§àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠàŠŸàŠ°àŠ£à§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠà§àŠ àŠàаà§àŠš, àŠàŠ¯àŠŒàŠ²à§àŠ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠàŠ¿ àŠàŠŸàŠ²àŠàŠŸàŠ¬à§ àŠ¬à§àŠàŠŸàŠ° àŠàŠšà§àН àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠàŠàŠ¿ àŠªàŠ¡àŠŒà§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:201
-msgid "Your additional software are up to date"
-msgstr "àŠàŠªàŠšàŠŸàŠ° àŠ
àŠ€àŠ¿àŠ°àŠ¿àŠà§àŠ€ àŠžàŠ«à§àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ° àŠàŠª àŠà§ àŠ¡à§àŠ"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:202
-msgid "The upgrade was successful."
-msgstr "àŠàŠªàŠà§àаà§àŠ¡ àŠžàŠ«àŠ² àŠ¹à§à§àŠà§à¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:205
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr "àŠàŠªàŠà§àаà§àŠ¡ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§ àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠ®àŠžà§àŠ¯àŠŸ àŠàŠŸàŠ°àŠ£à§ àŠ¹àŠ€à§ àŠªàŠŸàŠ°à§à¥€ àŠŠàŠ¯àŠŒàŠŸ àŠàŠ°à§ àŠàŠªàŠšàŠŸàŠ° àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠžàŠàНà§àŠ àŠà§àŠ àŠàаà§àŠš, àŠàŠ¯àŠŒàŠ²à§àŠ àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠš, àŠ¬àŠŸ àŠžàŠ®àŠžà§àŠ¯àŠŸàŠàŠ¿ àŠàŠŸàŠ²àŠàŠŸàŠ¬à§ àŠ¬à§àŠàŠŸàŠ° àŠàŠšà§àН àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ²àŠàŠàŠ¿ àŠªàŠ¡àŠŒà§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr "àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠàŠ¡àŠŒàŠ¿àŠà§ àŠžàŠ¿àŠà§àŠà§àаà§àŠšàŠŸàŠàŠ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr "àŠàа àŠžàŠ àŠ¿àŠàŠàŠŸàŠ¬à§ àŠàŠŸàŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠàŠàŠ¿ àŠžàŠ àŠ¿àŠ àŠàŠ¡àŠŒàŠ¿ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš, àŠ¬àŠ¿àŠ¶à§àŠ· àŠàŠ°à§ àŠ²à§àŠàŠŸàŠšà§ àŠªàŠ°àŠ¿àŠ·à§àŠ¬àŠŸàŠà§àŠ²àŠ¿àŠ° àŠàŠšà§àН àŠ
àŠšà§àŠà§àŠ°àŠ¹àŠªà§àаà§àŠ¬àŠ àŠ
àŠªà§àŠà§àŠ·àŠŸ àŠàаà§àŠš..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr "àŠàŠ¡àŠŒàŠ¿ àŠžàŠ¿àŠà§àŠà§àаà§àŠšàŠŸàŠàŠ àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥!"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
-msgid "This version of Tails has known security issues:"
-msgstr "Tails àŠàа àŠàŠ àŠžàŠàŠžà§àŠàŠ°àŠ£ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ¬àŠ¿àŠ·àŠ¯àŠŒ àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠ¹àŠ¯àŠŒà§àŠà§:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:134
-msgid "Known security issues"
-msgstr "àŠªàŠ°àŠ¿àŠàŠ¿àŠ€ àŠšàŠ¿àŠ°àŠŸàŠªàŠ€à§àŠ€àŠŸ àŠ¬àŠ¿àŠ·àŠ¯àŠŒ"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ ${nic} àŠ
àŠà§àŠ·àŠ®"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ $ {nic_name} ($ {nic}) àŠàŠšà§àН MAC àŠžà§àŠªà§àŠ«àŠ¿àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§ àŠ€àŠŸàŠ àŠàŠàŠ¿ àŠ
àŠžà§àŠ¥àŠŸàŠ¯àŠŒà§àŠàŠŸàŠ¬à§ àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§à¥€\nàŠàŠªàŠšàŠ¿ TailsàŠªà§àŠšàŠ°à§àŠžà§àŠàŠšàŠŸ àŠàŠ¬àŠ àŠ®à§àŠ¯àŠŸàŠ spoofing àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-msgid "All networking disabled"
-msgstr "àŠžàŠ®àŠžà§àŠ€ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing."
-msgstr "àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠàŠŸàŠ°à§àŠ¡ $ {nic_name} ($ {nic}) àŠàŠšà§àН MAC àŠžà§àŠªà§àŠ«àŠ¿àŠ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§à¥€ àŠ€à§àаà§àŠàŠ¿ àŠªà§àŠšàŠ°à§àŠŠà§àŠ§àŠŸàŠ°à§àа àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ€àŠŸàŠ àŠžàŠ®àŠžà§àŠ€ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠàŠ¿àŠ àŠšàŠ¿àŠ·à§àŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà¥€\nàŠàŠªàŠšàŠ¿ àŠªà§àŠà§àŠ àŠªà§àŠšàŠ°à§àŠžà§àŠàŠšàŠŸ àŠàŠ¬àŠ àŠ®à§àŠ¯àŠŸàŠ spoofing àŠ
àŠà§àŠ·àŠ® àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§à¥€"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:109
-msgid "Lock Screen"
-msgstr "àŠ²àŠ àŠžà§àŠà§àŠ°àŠ¿àŠš"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "àŠ¬àŠŸàŠ€àŠ¿àŠ²"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:124
-msgid "Screen Locker"
-msgstr "àŠžà§àŠà§àŠ°àŠ¿àŠš àŠ²àŠàŠŸàŠ°"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:130
-msgid "Set up a password to unlock the screen."
-msgstr "àŠžà§àŠà§àŠ°àŠ¿àŠš àŠàŠšàŠ²àŠ àŠàŠ°àŠ€à§ àŠàŠàŠàŠ¿ àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡ àŠžà§àŠ àŠàŠª àŠàаà§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:135
-msgid "Password"
-msgstr "àŠªàŠŸàŠžàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ¡"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:141
-msgid "Confirm"
-msgstr "àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàŠ°àŠŸ"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-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 https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>àŠàŠªàŠà§àаà§àŠ¡ àŠŠà§àŠàŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠ²àŠ¬à§àЧ àŠ¯àŠ¥à§àŠ·à§àŠ àŠ®à§àŠ®àŠ°àŠ¿ àŠšà§àŠà¥€</b>\n\nàŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€ àŠàаà§àŠš àŠ¯à§ àŠàŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠŸàŠàв àŠàŠŸàŠ²àŠŸàŠšà§àа àŠàŠšà§àН àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà§àŠ¯àŠŒàŠ€àŠŸ àŠžàŠšà§àŠ€à§àŠ·à§àŠ àŠàаà§àŠš\nàŠŠà§àŠà§àŠš: file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nàŠàŠ¬àŠŸàŠ° àŠàŠªàŠà§àаà§àŠ¡à§àа àŠàŠšà§àН àŠªàŠ°à§àŠà§àŠ·àŠŸ àŠàŠ°àŠ€à§ àŠàŠŸàŠàв àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠŸàŠ° àŠà§àŠ·à§àŠàŠŸ àŠàаà§àŠšà¥€\n\nàŠ¬àŠŸ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ² àŠàŠªàŠà§àаà§àŠ¡ àŠàŠ¿à¥€\nàŠŠà§àŠà§àŠš https://tails.boum.org/doc/first_steps/upgrade#manual \""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "àŠ€à§àаà§àŠàŠ¿:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "àŠà§àв"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
-msgid "Warning: virtual machine detected!"
-msgstr "àŠžàŠ€àŠ°à§àŠàŠ€àŠŸ: àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ² àŠ®à§àŠ¶àŠ¿àŠš àŠžàŠšàŠŸàŠà§àŠ€!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:73
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr "àŠàŠàŠ¯àŠŒ àŠ¹à§àŠžà§àŠ àŠ
àŠªàŠŸàŠ°à§àŠàŠ¿àŠ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠàŠ¬àŠ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ²àŠŸàŠàŠà§àŠ¶àŠš àŠžàŠ«àŠàŠàŠ¯àŠŒà§àŠ¯àŠŸàŠ°àŠàŠ¿ àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠàŠŸàŠàвàŠà§àŠ²àŠ¿àŠ€à§ àŠàаàŠà§àŠš àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠà§àŠ·àŠ£ àŠàŠ°àŠ€à§ àŠžàŠà§àŠ·àŠ®à¥€"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:76
-msgid "Warning: non-free virtual machine detected!"
-msgstr "àŠžàŠ€àŠ°à§àŠàŠ€àŠŸ: àŠ
-àŠ®à§àŠà§àŠ€ àŠàŠŸàŠ°à§àŠà§àŠ¯àŠŒàŠŸàŠ² àŠ®à§àŠ¶àŠ¿àŠš àŠžàŠšàŠŸàŠà§àŠ€!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:78
-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:83
-msgid "Learn more"
-msgstr "àŠàŠ°à§ àŠàŠŸàŠšà§àŠš"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:43
-msgid "Tor is not ready"
-msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€ àŠšàŠŸ"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:44
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "àŠàа àŠªà§àŠ°àŠžà§àŠ€à§àŠ€ àŠšàŠŸ àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¯àŠŸàŠàйà§àŠ àŠ¶à§àаà§?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:45
-msgid "Start Tor Browser"
-msgstr "àŠàа àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¶à§àŠ°à§ àŠàаà§àŠš"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠžàŠ€à§àŠ¯àŠ¿àŠ àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠŸàŠ²à§ àŠàŠ°àŠ€à§ àŠàŠŸàŠš?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr "àŠ
àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°à§àа àŠ®àŠ§à§àŠ¯à§ àŠšà§àŠàŠàŠ¯àŠŒàŠŸàŠ°à§àŠ àŠà§àŠ°àŠ¿àŠ¯àŠŒàŠŸàŠàŠ²àŠŸàŠªàŠàŠ¿ <b> àŠ¬à§àŠšàŠŸàŠ®à§ àŠšàŠ¯àŠŒ </ b>ी \\ N àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠš àŠ¹àŠ²à§ àŠ
àŠšàŠ¿àŠ°àŠŸàŠªàŠŠ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠš, àŠàŠŠàŠŸàŠ¹àŠ°àŠ£àŠžà§àŠ¬àŠ°à§àŠª \\ n àŠ¯àŠŠàŠ¿ àŠàŠªàŠšàŠŸàŠ° àŠàŠšà§àŠàŠŸàŠ°àŠšà§àŠ àŠžàŠàНà§àŠ àŠžàŠà§àŠ°àŠ¿àŠ¯àŠŒ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠàŠªàŠšàŠŸàŠà§ àŠ²àŠàŠàŠš àŠ¬àŠŸ àŠšàŠ¿àŠ¬àŠšà§àŠ§àŠš àŠàŠ°àŠ€à§ àŠ¹àŠ¯àŠŒà¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¶à§àŠ°à§ àŠ¹àŠà§àŠà§ ..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-msgid "This may take a while, so please be patient."
-msgstr "àŠàŠàŠ¿ àŠàŠàŠàŠ¿ àŠžàŠ®àŠ¯àŠŒ àŠšàŠ¿àŠ€à§ àŠªàŠŸàŠ°à§, àŠ€àŠŸàŠ àŠ§à§àаà§àН àŠ¥àŠŸàŠà§àŠšà¥€"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠ¬àŠšà§àЧ àŠàŠ°àŠŸ àŠ¹àŠà§àŠà§ ..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-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:70
-msgid "Failed to restart Tor."
-msgstr "àŠàа àŠªà§àŠšàŠ°àŠŸàŠ¯àŠŒ àŠàŠ°àŠ®à§àŠ àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr "àŠ
àŠžà§àаàŠà§àŠ·àŠ¿àŠ€ àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ°"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:92
-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:100
-msgid "Failed to setup chroot."
-msgstr "àŠžà§àŠàŠàŠª àŠà§àаà§àŠà§àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥ àŠ¹àŠ¯àŠŒà§àŠà§"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:105
-msgid "Failed to configure browser."
-msgstr "àŠ¬à§àŠ°àŠŸàŠàŠàŠŸàŠ° àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠ€à§ àŠ¬à§àŠ¯àŠ°à§àŠ¥"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:111
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr "àŠà§àŠšàŠ DNS àŠžàŠŸàŠ°à§àŠàŠŸàŠ° DHCP àŠàа àŠ®àŠŸàŠ§à§àŠ¯àŠ®à§ àŠªàŠŸàŠàŠ¯àŠŒàŠŸ àŠ¯àŠŸàŠ¯àŠŒ àŠšàŠŸ àŠ¬àŠŸ àŠ®à§àŠ¯àŠŸàŠšà§àŠ¯àŠŒàŠŸàŠ²àŠ¿ àŠàŠšàŠ«àŠ¿àŠàŠŸàŠ° àŠàŠ°àŠŸ àŠ¹àŠ¯àŠŒà§àŠà§ NetworkManagerी"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
-msgid "Failed to run browser."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Tails àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ¿àŠàŠŸàŠ¬à§ àŠ¶àŠ¿àŠà§àŠš?"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "Tails àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠàŠ°àŠ àŠàŠŸàŠšà§àŠš"
-
-#: ../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/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 "àŠàŠàŠàŠ¿ àŠ°à§àŠ àŠàŠŸàŠ°à§àŠ®àŠ¿àŠšàŠŸàŠ² àŠ¶à§àŠ°à§ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН, àŠàŠªàŠšàŠ¿ àŠªà§àŠ°àŠ®àŠŸàŠ£à§àŠàŠ°àŠ£ àŠªà§àŠ°àŠ¯àŠŒà§àŠàŠšà¥€"
diff --git a/ca_ES.po b/ca_ES.po
deleted file mode 100644
index ac83f2d5a..000000000
--- a/ca_ES.po
+++ /dev/null
@@ -1,455 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-10 12:23+0100\n"
-"PO-Revision-Date: 2014-01-11 08:57+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Catalan (Spain) (http://www.transifex.com/projects/p/torproject/language/ca_ES/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ca_ES\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:31
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:32
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr "Cancel·la"
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:34
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:35
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:72
-msgid "Shutdown Helper"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:115
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:121
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:116
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:126
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:122
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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
-msgid "Tails documentation"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/cs_CZ.po b/cs_CZ.po
deleted file mode 100644
index 048428833..000000000
--- a/cs_CZ.po
+++ /dev/null
@@ -1,565 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-04 11:56+0100\n"
-"PO-Revision-Date: 2016-01-06 09:25+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
-"Language-Team: Czech (Czech Republic) (http://www.transifex.com/otf/torproject/language/cs_CZ/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: cs_CZ\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:65
-#, 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/local/bin/electrum:14
-msgid "Persistence is disabled for Electrum"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:16
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:18
-msgid "Do you want to start Electrum anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:208
-msgid "_Open Text Editor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:252
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:303
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:305
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:307
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:309
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:311
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:313
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:366
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:367
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:368
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:400
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:403
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:433
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:496
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:507
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:513
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:517
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:557
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:560
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:578
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:591
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:593
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:621
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:623
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:751
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:772
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:822
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:828
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:853
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:18
-msgid "The <b>Claws Mail</b> persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:20
-msgid ""
-"If you have emails saved in <b>Claws Mail</b>, you should <a "
-"href='https://tails.boum.org/doc/anonymous_internet/claws_mail_to_icedove'>migrate"
-" your data</a> before starting <b>Icedove</b>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:71
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:74
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:19
-#: ../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:24
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:27
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:146
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:156
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:18
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:22
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:23
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:39
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:69
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:72
-msgid "Warning: non-free virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-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:79
-msgid "Learn more"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:29
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:30
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:31
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:32
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:33
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:35
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:47
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:54
-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:66
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:85
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:93
-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:105
-msgid ""
-"NetworkManager passed us garbage data when trying to deduce the clearnet DNS"
-" server."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:115
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:123
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:129
-msgid "Failed to configure browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:134
-msgid "Failed to run browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:35
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:36
-msgid ""
-"Something went wrong when I2P was starting. Check the logs in /var/log/i2p "
-"for more information."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:53
-msgid "I2P's router console is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:54
-msgid "You can now access I2P's router console in the I2P Browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:59
-msgid "I2P is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:60
-msgid ""
-"Eepsite tunnel not built within six minutes. Check the router console in the"
-" I2P Browser or the logs in /var/log/i2p for more information. Reconnect to "
-"the network to try again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:72
-msgid "I2P is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:73
-msgid "You can now access services on I2P."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:1
-msgid "Anonymous overlay network browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:2
-msgid "I2P Browser"
-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-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/el_GR.po b/el_GR.po
deleted file mode 100644
index fa713bfeb..000000000
--- a/el_GR.po
+++ /dev/null
@@ -1,506 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-04 08:50+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/torproject/language/el_GR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: el_GR\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:43
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:44
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:39
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:40
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
-msgid "Network connection blocked?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:40
-msgid ""
-"It looks like you are blocked from the network. This may be related to the "
-"MAC spoofing feature. For more information, see the <a "
-"href=\\\"file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html#blocked\\\">MAC"
-" spoofing documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:30
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing. See the <a href='file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:39
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:40
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing. See the <a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:20
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:40
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/es_NI.po b/es_NI.po
deleted file mode 100644
index 0f517a2a7..000000000
--- a/es_NI.po
+++ /dev/null
@@ -1,506 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-23 08:55+0100\n"
-"PO-Revision-Date: 2014-04-04 08:50+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Spanish (Nicaragua) (http://www.transifex.com/projects/p/torproject/language/es_NI/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es_NI\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:43
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:44
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:39
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/shutdown-helper-applet:40
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:38
-msgid "Network connection blocked?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector:40
-msgid ""
-"It looks like you are blocked from the network. This may be related to the "
-"MAC spoofing feature. For more information, see the <a "
-"href=\\\"file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html#blocked\\\">MAC"
-" spoofing documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:29
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:30
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing. See the <a href='file:///usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:39
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-spoof-mac:40
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing. See the <a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en.html'>documentation</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:20
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:40
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/si.po b/si.po
deleted file mode 100644
index f8558fc24..000000000
--- a/si.po
+++ /dev/null
@@ -1,562 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-04 11:56+0100\n"
-"PO-Revision-Date: 2016-01-06 09:25+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
-"Language-Team: Sinhala (http://www.transifex.com/otf/torproject/language/si/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: si\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:65
-#, 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/local/bin/electrum:14
-msgid "Persistence is disabled for Electrum"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:16
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:18
-msgid "Do you want to start Electrum anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:208
-msgid "_Open Text Editor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:252
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:303
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:305
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:307
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:309
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:311
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:313
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:366
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:367
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:368
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:400
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:403
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:433
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:496
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:507
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:513
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:517
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:557
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:560
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:578
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:591
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:593
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:621
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:623
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:751
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:772
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:822
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:828
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:853
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:18
-msgid "The <b>Claws Mail</b> persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:20
-msgid ""
-"If you have emails saved in <b>Claws Mail</b>, you should <a "
-"href='https://tails.boum.org/doc/anonymous_internet/claws_mail_to_icedove'>migrate"
-" your data</a> before starting <b>Icedove</b>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:71
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:74
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:19
-#: ../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:24
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:27
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:146
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:156
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:18
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:22
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:23
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:39
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:69
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:72
-msgid "Warning: non-free virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-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:79
-msgid "Learn more"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:29
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:30
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:31
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:32
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:33
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:35
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:47
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:54
-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:66
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:85
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:93
-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:105
-msgid ""
-"NetworkManager passed us garbage data when trying to deduce the clearnet DNS"
-" server."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:115
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:123
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:129
-msgid "Failed to configure browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:134
-msgid "Failed to run browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:35
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:36
-msgid ""
-"Something went wrong when I2P was starting. Check the logs in /var/log/i2p "
-"for more information."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:53
-msgid "I2P's router console is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:54
-msgid "You can now access I2P's router console in the I2P Browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:59
-msgid "I2P is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:60
-msgid ""
-"Eepsite tunnel not built within six minutes. Check the router console in the"
-" I2P Browser or the logs in /var/log/i2p for more information. Reconnect to "
-"the network to try again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:72
-msgid "I2P is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:73
-msgid "You can now access services on I2P."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:1
-msgid "Anonymous overlay network browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:2
-msgid "I2P Browser"
-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-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/sq_AL.po b/sq_AL.po
deleted file mode 100644
index 3bf20a0dc..000000000
--- a/sq_AL.po
+++ /dev/null
@@ -1,562 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-04 11:56+0100\n"
-"PO-Revision-Date: 2016-01-06 09:25+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
-"Language-Team: Albanian (Albania) (http://www.transifex.com/otf/torproject/language/sq_AL/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sq_AL\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:65
-#, 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/local/bin/electrum:14
-msgid "Persistence is disabled for Electrum"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:16
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:18
-msgid "Do you want to start Electrum anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:208
-msgid "_Open Text Editor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:252
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:303
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:305
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:307
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:309
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:311
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:313
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:366
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:367
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:368
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:400
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:403
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:433
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:496
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:507
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:513
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:517
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:557
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:560
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:578
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:591
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:593
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:621
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:623
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:751
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:772
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:822
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:828
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:853
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:18
-msgid "The <b>Claws Mail</b> persistence feature is activated."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/icedove:20
-msgid ""
-"If you have emails saved in <b>Claws Mail</b>, you should <a "
-"href='https://tails.boum.org/doc/anonymous_internet/claws_mail_to_icedove'>migrate"
-" your data</a> before starting <b>Icedove</b>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:71
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/shutdown-helper@tails.boum.org/extension.js:74
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:19
-#: ../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:24
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:27
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:118
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:124
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:128
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:119
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:129
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:146
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:156
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
-msgid "All networking disabled"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-#, sh-format
-msgid ""
-"MAC spoofing 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 spoofing."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:18
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:22
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:19
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:23
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:39
-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 https://tails.boum.org/doc/first_steps/upgrade#manual"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:69
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:72
-msgid "Warning: non-free virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-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:79
-msgid "Learn more"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:29
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:30
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:31
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:32
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:33
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:35
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:47
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:54
-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:66
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:85
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:93
-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:105
-msgid ""
-"NetworkManager passed us garbage data when trying to deduce the clearnet DNS"
-" server."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:115
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:123
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:129
-msgid "Failed to configure browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:134
-msgid "Failed to run browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:35
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:36
-msgid ""
-"Something went wrong when I2P was starting. Check the logs in /var/log/i2p "
-"for more information."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:53
-msgid "I2P's router console is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:54
-msgid "You can now access I2P's router console in the I2P Browser."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:59
-msgid "I2P is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:60
-msgid ""
-"Eepsite tunnel not built within six minutes. Check the router console in the"
-" I2P Browser or the logs in /var/log/i2p for more information. Reconnect to "
-"the network to try again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:72
-msgid "I2P is ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-i2p:73
-msgid "You can now access services on I2P."
-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/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:1
-msgid "Anonymous overlay network browser"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p-browser.desktop.in.h:2
-msgid "I2P Browser"
-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-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/zh.po b/zh.po
deleted file mode 100644
index 3b72dda03..000000000
--- a/zh.po
+++ /dev/null
@@ -1,452 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-10 12:23+0100\n"
-"PO-Revision-Date: 2014-01-11 08:57+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Chinese (http://www.transifex.com/projects/p/torproject/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:31
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:32
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:34
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:35
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:72
-msgid "Shutdown Helper"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:115
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:121
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:116
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:126
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:122
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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
-msgid "Tails documentation"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
diff --git a/zh_CN.GB2312.po b/zh_CN.GB2312.po
deleted file mode 100644
index 32ec28a7e..000000000
--- a/zh_CN.GB2312.po
+++ /dev/null
@@ -1,452 +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: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-10 12:23+0100\n"
-"PO-Revision-Date: 2014-01-11 08:57+0000\n"
-"Last-Translator: runasand <runa.sandvik(a)gmail.com>\n"
-"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/torproject/language/zh_CN.GB2312/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN.GB2312\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:31
-msgid "Tor is ready"
-msgstr ""
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready-notification.sh:32
-msgid "You can now access the Internet."
-msgstr ""
-
-#: config/chroot_local-includes/etc/whisperback/config.py:64
-#, 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>If you don't mind disclosing some bits of your identity\n"
-"to Tails developers, you can provide an email address to\n"
-"let us ask more details about the bug. Additionally entering\n"
-"a public PGP key enables us to encrypt such future\n"
-"communication.</p>\n"
-"<p>Anyone who can see this reply will probably infer you are\n"
-"a Tails user. Time to wonder how much you trust your\n"
-"Internet and mailbox providers?</p>\n"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:136
-msgid "OpenPGP encryption applet"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:139
-msgid "Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:141
-msgid "About"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:192
-msgid "Encrypt Clipboard with _Passphrase"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:195
-msgid "Sign/Encrypt Clipboard with Public _Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:200
-msgid "_Decrypt/Verify Clipboard"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:204
-msgid "_Manage Keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:244
-msgid "The clipboard does not contain valid input data."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:294
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:296
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:298
-msgid "Unknown Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:300
-msgid "Marginal Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:302
-msgid "Full Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:304
-msgid "Ultimate Trust"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:357
-msgid "Name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:358
-msgid "Key ID"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:359
-msgid "Status"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:391
-msgid "Fingerprint:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:394
-msgid "User ID:"
-msgid_plural "User IDs:"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:424
-msgid "None (Don't sign)"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:487
-msgid "Select recipients:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:495
-msgid "Hide recipients"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:498
-msgid ""
-"Hide the user IDs of all recipients of an encrypted message. Otherwise "
-"anyone that sees the encrypted message can see who the recipients are."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:504
-msgid "Sign message as:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:508
-msgid "Choose keys"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:548
-msgid "Do you trust these keys?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:551
-msgid "The following selected key is not fully trusted:"
-msgid_plural "The following selected keys are not fully trusted:"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:569
-msgid "Do you trust this key enough to use it anyway?"
-msgid_plural "Do you trust these keys enough to use them anyway?"
-msgstr[0] ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:582
-msgid "No keys selected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:584
-msgid ""
-"You must select a private key to sign the message, or some public keys to "
-"encrypt the message, or both."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:612
-msgid "No keys available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:614
-msgid ""
-"You need a private key to sign messages or a public key to encrypt messages."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:742
-msgid "GnuPG error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:763
-msgid "Therefore the operation cannot be performed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:813
-msgid "GnuPG results"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:819
-msgid "Output of GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/gpgApplet:844
-msgid "Other messages provided by GnuPG:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:12
-msgid "Tor is not ready"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:13
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:14
-msgid "Start Tor Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/iceweasel:15
-msgid "Cancel"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:34
-msgid "Shutdown Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:35
-msgid "Reboot Immediately"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/shutdown_helper_applet:72
-msgid "Shutdown Helper"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:13
-msgid "not available"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:16
-#: ../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:17
-msgid "The Amnesic Incognito Live System"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:18
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:20
-msgid "About Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:115
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:121
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:125
-msgid "Your additional software"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:116
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:126
-msgid ""
-"The upgrade failed. This might be due to a network problem. Please check "
-"your network connection, try to restart Tails, or read the system log to "
-"understand better the problem."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:122
-msgid "The upgrade was successful."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:145
-msgid "This version of Tails has known security issues:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:62
-msgid "Starting I2P..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:63
-msgid "The I2P router console will be opened on start."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:82
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:124
-msgid "I2P failed to start"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:83
-msgid ""
-"Make sure that you have a working Internet connection, then try to start I2P"
-" again."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-start-i2p:125
-msgid ""
-"Something went wrong when I2P was starting. Look in the logs in the "
-"following directory for more information:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:53
-msgid "Warning: virtual machine detected!"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:55
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-virt-notify-user:57
-msgid ""
-"<a "
-"href='file:///usr/share/doc/tails/website/doc/advanced_topics/virtualization.en.html'>Learn"
-" more...</a>"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "error:"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid "Error"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:68
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>. Only use"
-" the Unsafe Browser if necessary, for example if you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:71
-msgid "_Launch"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:72
-msgid "_Exit"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
-msgid "Starting the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
-msgid "This may take a while, so please be patient."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:101
-msgid "Failed to setup chroot."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:175
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:215
-msgid "Shutting down the Unsafe Browser..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:216
-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:228
-msgid "Failed to restart Tor."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:236
-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:249
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:11
-msgid "TrueCrypt will soon be removed from Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/truecrypt-wrapper.disabled:12
-msgid ""
-"TrueCrypt will soon be removed from Tails due to license and development "
-"concerns."
-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
-msgid "Tails documentation"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:1
-msgid "Anonymous overlay network "
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:2
-msgid "i2p"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/i2p.desktop.in.h:3
-msgid "Anonymous overlay network"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:1
-msgid "Reboot"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-reboot.desktop.in.h:2
-msgid "Immediately reboot computer"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:1
-msgid "Power Off"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-shutdown.desktop.in.h:2
-msgid "Immediately shut down computer"
-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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr ""
1
0

[translation/tails-misc] #12095 remove dead language teams, merge bn and bn_BD before
by emmapeel@torproject.org 02 Aug '18
by emmapeel@torproject.org 02 Aug '18
02 Aug '18
commit 49bba7c50c39679f6432453745708a350da9914d
Merge: 800cb1a57 8057d9e3f
Author: emma peel <emma.peel(a)riseup.net>
Date: Thu Aug 2 08:57:09 2018 +0000
#12095 remove dead language teams, merge bn and bn_BD before
af_ZA.po | 506 --------------------------------------------------
am_ET.po | 563 -------------------------------------------------------
bg_BG.po | 506 --------------------------------------------------
bn.po | 163 ++++++++++------
bn_BD.po | 403 ----------------------------------------
ca_ES.po | 455 ---------------------------------------------
cs_CZ.po | 565 --------------------------------------------------------
el_GR.po | 506 --------------------------------------------------
es_NI.po | 506 --------------------------------------------------
si.po | 562 -------------------------------------------------------
sq_AL.po | 562 -------------------------------------------------------
zh.po | 452 ---------------------------------------------
zh_CN.GB2312.po | 452 ---------------------------------------------
13 files changed, 111 insertions(+), 6090 deletions(-)
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 02 Aug '18
by translation@torproject.org 02 Aug '18
02 Aug '18
commit 136910e4b6df731f76af9f1d3960025a15c1c7b2
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Aug 2 08:49:48 2018 +0000
Update translations for support-portal
---
contents+it.po | 75 ++++++++++++++++++++++++++++++++++++++++++++++++----------
1 file changed, 62 insertions(+), 13 deletions(-)
diff --git a/contents+it.po b/contents+it.po
index afac9cd51..520128637 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -1896,7 +1896,7 @@ msgstr ""
#: http//localhost/tbb/tbb-40/
#: (content/tbb/tbb-40/contents+en.lrquestion.seo_slug)
msgid "different-circuit-each-website"
-msgstr ""
+msgstr "circuito-differente-per-ogni-sito-web"
#: http//localhost/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.title)
@@ -1918,6 +1918,8 @@ msgid ""
"For a while now, Disconnect has had no access to Google search results which"
" we used in Tor Browser."
msgstr ""
+"E' da un po' che Disconnect non ha più accesso alle ricerche di Google, le "
+"quali venivano utilizzate in Tor Browser."
#: http//localhost/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.description)
@@ -1930,7 +1932,7 @@ msgstr ""
#: http//localhost/tbb/tbb-41/
#: (content/tbb/tbb-41/contents+en.lrquestion.seo_slug)
msgid "why-is-tor-using-duckduckgo"
-msgstr ""
+msgstr "perché-tor-utilizza-duckduckgo"
#: http//localhost/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.title)
@@ -1957,6 +1959,9 @@ msgid ""
" you have extracted Tor Browser in a location that your user has the correct"
" permissions for."
msgstr ""
+"Per favore assicurati che non vi siano in esecuzione altre istanze di Tor "
+"Browser, e che tu abbia estratto Tor Browser in una cartella in cui il tuo "
+"utente abbia i corretti permessi per eseguirlo."
#: http//localhost/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -2511,7 +2516,7 @@ msgstr "utilizzare-gettor-via-twitter"
#: http//localhost/gettor/gettor-4/
#: (content/gettor/gettor-4/contents+en.lrquestion.title)
msgid "To use GetTor via XMPP (Tor Messenger, Jitsi, CoyIM)."
-msgstr ""
+msgstr "Utilizzare GetTor tramite XMPP (Tor Messenger, Jitsi, CoyIM). "
#: http//localhost/gettor/gettor-4/
#: (content/gettor/gettor-4/contents+en.lrquestion.description)
@@ -2519,6 +2524,8 @@ msgid ""
"To get links for downloading Tor Browser, send a message to "
"gettor@toproject(dot)org with one of the following codes in it:"
msgstr ""
+"Per ottenere i link per scaricare Tor Browser, invia un messaggio a "
+"gettor@toproject(dot)org con all'interno uno dei seguenti codici:"
#: http//localhost/gettor/gettor-4/
#: (content/gettor/gettor-4/contents+en.lrquestion.seo_slug)
@@ -2568,6 +2575,8 @@ msgid ""
"You should see one of these common log errors (look for the following lines "
"in your Tor log):"
msgstr ""
+"Dovresti visualizzare uno dei seguenti errori di registro comuni (cerca una "
+"delle seguenti righe nel tuo log di Tor):"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2575,6 +2584,7 @@ msgstr ""
#: (content/censorship/censorship-5/contents+en.lrquestion.description)
msgid "###### Common log error #1: Proxy connection failure"
msgstr ""
+"###### Errore di registro comune #1: Connessione al proxy non riuscita"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2583,6 +2593,7 @@ msgstr ""
msgid ""
"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
msgstr ""
+"2017-10-29 09:23:40.800 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2592,6 +2603,8 @@ msgid ""
"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
"server"
msgstr ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2601,6 +2614,8 @@ msgid ""
"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
"directory server"
msgstr ""
+"2017-10-29 09:23:47.900 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2610,6 +2625,8 @@ msgid ""
"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
msgstr ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect to "
+"xx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2619,6 +2636,8 @@ msgid ""
"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
msgstr ""
+"2017-10-29 09:24:08.900 [WARN] Proxy Client: unable to connect "
+"toxx..xxx..xxx.xx:xxxxx (\"general SOCKS server failure\")"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2642,6 +2661,8 @@ msgid ""
"If a SOCKS proxy is not required, or you’re not sure, please try connecting"
" to the Tor network without a SOCKS proxy."
msgstr ""
+"Se non è richiesto un SOCKS proxy, o non ne sei sicuro, prova per favore a "
+"connetterti al network Tor senza utilizzare un SOCKS proxy."
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2649,6 +2670,7 @@ msgstr ""
#: (content/censorship/censorship-5/contents+en.lrquestion.description)
msgid "##### Common log error #2: Can’t reach guard relays"
msgstr ""
+"##### Errore di registro comune #2: Impossibile raggiungere i guard relay"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2657,6 +2679,7 @@ msgstr ""
msgid ""
"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
msgstr ""
+"11/1/2017 21:11:43 PM.500 [NOTICE] Opening Socks listener on 127.0.0.1:9150"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2666,6 +2689,8 @@ msgid ""
"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
"network"
msgstr ""
+"11/1/2017 21:11:44 PM.300 [NOTICE] Bootstrapped 80%: Connecting to the Tor "
+"network"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2675,6 +2700,8 @@ msgid ""
"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
"Discarding this circuit."
msgstr ""
+"11/1/2017 21:11:44 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2684,6 +2711,8 @@ msgid ""
"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
"with first hop"
msgstr ""
+"11/1/2017 21:11:44 PM.500 [NOTICE] Bootstrapped 85%: Finishing handshake "
+"with first hop"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2693,6 +2722,8 @@ msgid ""
"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
"Discarding this circuit."
msgstr ""
+"11/1/2017 21:11:45 PM.300 [WARN] Failed to find node for hop 0 of our path. "
+"Discarding this circuit."
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2710,7 +2741,7 @@ msgstr ""
#: http//localhost/censorship/censorship-5/
#: (content/censorship/censorship-5/contents+en.lrquestion.description)
msgid "This could mean that you’re on a network that’s censored."
-msgstr ""
+msgstr "Questo potrebbe indicare che sei in un network sottoposto a censura."
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2734,6 +2765,8 @@ msgid ""
"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
"directory server"
msgstr ""
+"13-11-17 19:52:24.300 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2744,13 +2777,16 @@ msgid ""
"handshake with directory server. (DONE; DONE; count 10; recommendation warn;"
" host [host] at xxx.xxx.xxx.xx:xxx)"
msgstr ""
+"13-11-17 19:53:49.300 [WARN] Problem bootstrapping. Stuck at 10%: Finishing "
+"handshake with directory server. (DONE; DONE; count 10; recommendation warn;"
+" host [host] at xxx.xxx.xxx.xx:xxx) "
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
#: http//localhost/censorship/censorship-5/
#: (content/censorship/censorship-5/contents+en.lrquestion.description)
msgid "13-11-17 19:53:49.300 [WARN] 10 connections have failed:"
-msgstr ""
+msgstr "13-11-17 19:53:49.300 [WARN] 10 connections have failed: "
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2760,6 +2796,8 @@ msgid ""
"13-11-17 19:53:49.300 [WARN] 9 connections died in state handshaking (TLS) "
"with SSL state SSLv2/v3 read server hello A in HANDSHAKE"
msgstr ""
+"13-11-17 19:53:49.300 [WARN] 9 connections died in state handshaking (TLS) "
+"with SSL state SSLv2/v3 read server hello A in HANDSHAKE"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2782,6 +2820,8 @@ msgid ""
"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
"server"
msgstr ""
+"19.11.2017 00:04:48.000 [NOTICE] Bootstrapped 5%: Connecting to directory "
+"server"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2791,6 +2831,8 @@ msgid ""
"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
"directory server"
msgstr ""
+"19.11.2017 00:04:48.200 [NOTICE] Bootstrapped 10%: Finishing handshake with "
+"directory server"
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2801,6 +2843,9 @@ msgid ""
"(OR:xxx.xx.x.xx:xxxx): It seems that our clock is behind by 1 days, 0 hours,"
" 1 minutes, or that theirs is ahead."
msgstr ""
+"19.11.2017 00:04:48.800 [WARN] Received NETINFO cell with skewed time "
+"(OR:xxx.xx.x.xx:xxxx): It seems that our clock is behind by 1 days, 0 hours,"
+" 1 minutes, or that theirs is ahead."
#: http//localhost/connecting/connecting-2/
#: (content/connecting/connecting-2/contents+en.lrquestion.description)
@@ -2897,7 +2942,7 @@ msgstr ""
#: http//localhost/connecting/connecting-3/
#: (content/connecting/connecting-3/contents+en.lrquestion.seo_slug)
msgid "cannot-reach-x-onion"
-msgstr ""
+msgstr "impossibile-raggiungere-x-onion"
#: http//localhost/censorship/censorship-1/
#: (content/censorship/censorship-1/contents+en.lrquestion.seo_slug)
@@ -2910,26 +2955,29 @@ msgid ""
"Please take a strong stance in favor of digital privacy and internet "
"freedom, and allow Tor users access to xyz.com. Thank you.\""
msgstr ""
+"Per favore prendi una posizione forte a favore della privacy digitale e "
+"della libertà su internet e permetti agli utenti Tor di accedere a xyz.com. "
+"Grazie\"."
#: http//localhost/censorship/censorship-2/
#: (content/censorship/censorship-2/contents+en.lrquestion.seo_slug)
msgid "website-is-blocking-access-over-tor"
-msgstr ""
+msgstr "il-sito-internet-blocca-l'accesso-tramite-tor"
#: http//localhost/censorship/censorship-3/
#: (content/censorship/censorship-3/contents+en.lrquestion.seo_slug)
msgid "how-do-i-download-tor-if-torproject-org-is-blocked"
-msgstr ""
+msgstr "come-scarico-tor-se-torproject-org-è-bloccato"
#: http//localhost/censorship/censorship-4/
#: (content/censorship/censorship-4/contents+en.lrquestion.seo_slug)
msgid "cant-connect-to-tor-browser"
-msgstr ""
+msgstr "impossibile-connettersi-a-tor-browser"
#: http//localhost/censorship/censorship-6/
#: (content/censorship/censorship-6/contents+en.lrquestion.seo_slug)
msgid "is-my-network-censored"
-msgstr ""
+msgstr "il-mio-network-è-censurato"
#: http//localhost/censorship/censorship-7/
#: (content/censorship/censorship-7/contents+en.lrquestion.title)
@@ -3557,6 +3605,7 @@ msgstr ""
msgid ""
"$ gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -"
msgstr ""
+"$ gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -"
#: http//localhost/operators/operators-4/
#: (content/operators/operators-4/contents+en.lrquestion.description)
@@ -3566,17 +3615,17 @@ msgstr ""
#: http//localhost/operators/operators-4/
#: (content/operators/operators-4/contents+en.lrquestion.description)
msgid "$ sudo apt-get update"
-msgstr ""
+msgstr "$ sudo apt-get update"
#: http//localhost/operators/operators-4/
#: (content/operators/operators-4/contents+en.lrquestion.description)
msgid "$ sudo apt-get install tor deb.torproject.org-keyring"
-msgstr ""
+msgstr "$ sudo apt-get install tor deb.torproject.org-keyring"
#: http//localhost/operators/operators-4/
#: (content/operators/operators-4/contents+en.lrquestion.seo_slug)
msgid "using-correct-packages"
-msgstr ""
+msgstr "utilizzare-i-pacchetti-corretti"
#: http//localhost/operators/operators-6/
#: (content/operators/operators-6/contents+en.lrquestion.title)
1
0