tor-commits
Threads by month
- ----- 2025 -----
- November
- October
- September
- August
- July
- 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
June 2020
- 17 participants
- 1327 discussions
[snowflake-mobile/master] Changed time in Milliseconds to Seconds
by cohosh@torproject.org 18 Jun '20
by cohosh@torproject.org 18 Jun '20
18 Jun '20
commit 95cc69443e74926c8b5a59b3d9a5dea40e763d27
Author: Hashik Donthineni <HashikDonthineni(a)gmail.com>
Date: Wed Jun 17 13:29:32 2020 +0530
Changed time in Milliseconds to Seconds
---
app/src/main/java/org/torproject/snowflake/MyPersistentService.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
index 91550d6..0273d05 100644
--- a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
+++ b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
@@ -328,7 +328,7 @@ public class MyPersistentService extends Service {
final GetOfferService getOfferService = RetroServiceGenerator.createService(GetOfferService.class);
Observable<SDPOfferResponse> offer = getOfferService.getOffer(GlobalApplication.getHeadersMap(), new OfferRequestBody("555")); //TODO:Randomly Generate SID.
serviceDisposable = offer.subscribeOn(Schedulers.io())
- .delaySubscription(5000, TimeUnit.MILLISECONDS) //Delay of 5 seconds before sending request to avoid sending too many requests in case of a failure.
+ .delaySubscription(5, TimeUnit.SECONDS) //Delay of 5 seconds before sending request to avoid sending too many requests in case of a failure.
.observeOn(AndroidSchedulers.mainThread())
.subscribe(this::offerRequestSuccess, this::offerRequestFailure);
}
1
0
[snowflake-mobile/master] Changed fetchOffer into a loop to avoid spaghetti code
by cohosh@torproject.org 18 Jun '20
by cohosh@torproject.org 18 Jun '20
18 Jun '20
commit 2ddfebe2a80a24675a7a1320fc5562737fe5c5e5
Author: Hashik Donthineni <HashikDonthineni(a)gmail.com>
Date: Wed Jun 17 22:59:20 2020 +0530
Changed fetchOffer into a loop to avoid spaghetti code
---
.../torproject/snowflake/MyPersistentService.java | 59 ++++++++++++++--------
1 file changed, 38 insertions(+), 21 deletions(-)
diff --git a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
index 0273d05..8b20772 100644
--- a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
+++ b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
@@ -40,7 +40,7 @@ import java.util.concurrent.TimeUnit;
import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers;
import io.reactivex.rxjava3.core.Observable;
-import io.reactivex.rxjava3.disposables.Disposable;
+import io.reactivex.rxjava3.disposables.CompositeDisposable;
import io.reactivex.rxjava3.schedulers.Schedulers;
/**
@@ -55,9 +55,9 @@ public class MyPersistentService extends Service {
private SharedPreferences sharedPreferences;
private boolean isServiceStarted;
private PowerManager.WakeLock wakeLock;
- private Disposable serviceDisposable;
+ private CompositeDisposable compositeDisposable;
private NotificationManager mNotificationManager;
-
+ private boolean isConnectionAlive;
@Nullable
@Override
@@ -91,6 +91,8 @@ public class MyPersistentService extends Service {
Log.d(TAG, "onCreate: Service Created");
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
+ isConnectionAlive = false;
+ compositeDisposable = new CompositeDisposable();
sharedPreferences = getSharedPreferences(getString(R.string.sharedpreference_file), MODE_PRIVATE); //Assigning the shared preferences
Notification notification = createPersistentNotification(false, null);
startForeground(ForegroundServiceConstants.DEF_NOTIFICATION_ID, notification);
@@ -99,8 +101,8 @@ public class MyPersistentService extends Service {
@Override
public void onDestroy() {
sharedPreferencesHelper(ForegroundServiceConstants.SERVICE_STOPPED);
- if (serviceDisposable != null)
- serviceDisposable.dispose(); //Stopping the network request if it's running.
+ if (compositeDisposable != null)
+ compositeDisposable.dispose(); //Disposing all the threads. Including network calls.
if (mainDataChannel != null) {
mainDataChannel.close();
}
@@ -220,9 +222,18 @@ public class MyPersistentService extends Service {
* Initializing and starting WebRTC connection.
*/
private void startWebRTCConnection() {
+ Log.d(TAG, "startWebRTCConnection: Starting Connection.");
initializePeerConnectionFactory(); //Android Specific, you can Ignore.
mainPeerConnection = createPeerConnection(factory); //Creating New Peer Connection.
- fetchOffer();
+ compositeDisposable.add(
+ //First argument is initialDelay, Second argument is the time after which it has to repeat.
+ Observable.interval(1, 5, TimeUnit.SECONDS)
+ .subscribeOn(Schedulers.io())
+ .observeOn(AndroidSchedulers.mainThread())
+ .subscribe(aLong -> {
+ fetchOffer(); //This runs on main thread.
+ })
+ );
}
/**
@@ -323,14 +334,19 @@ public class MyPersistentService extends Service {
* Sending post request to get offer from the broker.
*/
private void fetchOffer() {
- Log.d(TAG, "fetchOffer: Fetching offer from broker.");
- ///Retrofit call
- final GetOfferService getOfferService = RetroServiceGenerator.createService(GetOfferService.class);
- Observable<SDPOfferResponse> offer = getOfferService.getOffer(GlobalApplication.getHeadersMap(), new OfferRequestBody("555")); //TODO:Randomly Generate SID.
- serviceDisposable = offer.subscribeOn(Schedulers.io())
- .delaySubscription(5, TimeUnit.SECONDS) //Delay of 5 seconds before sending request to avoid sending too many requests in case of a failure.
- .observeOn(AndroidSchedulers.mainThread())
- .subscribe(this::offerRequestSuccess, this::offerRequestFailure);
+ //Fetch offer only when the connection is not alive/active and only when the service is on.
+ if (isServiceStarted && !isConnectionAlive) {
+ isConnectionAlive = true; //Considering connection is alive from now on, until it is set to false.
+ Log.d(TAG, "fetchOffer: Fetching offer from broker.");
+ ///Retrofit call
+ final GetOfferService getOfferService = RetroServiceGenerator.createService(GetOfferService.class);
+ Observable<SDPOfferResponse> offer = getOfferService.getOffer(GlobalApplication.getHeadersMap(), new OfferRequestBody("555")); //TODO:Randomly Generate SID.
+ compositeDisposable.add(
+ offer.subscribeOn(Schedulers.io())
+ .observeOn(AndroidSchedulers.mainThread())
+ .subscribe(this::offerRequestSuccess, this::offerRequestFailure)
+ );
+ }
}
/**
@@ -355,8 +371,7 @@ public class MyPersistentService extends Service {
} else {
updateNotification("No client match, retrying...");
Log.d(TAG, "requestSuccess: NO CLIENT MATCH");
- if (isServiceStarted)
- fetchOffer(); //Sending request for offer again.
+ isConnectionAlive = false;
}
}
@@ -368,8 +383,7 @@ public class MyPersistentService extends Service {
public void offerRequestFailure(Throwable t) {
updateNotification("Request failed, retrying...");
Log.d(TAG, "requestFailure: " + t.getMessage());
- if (isServiceStarted)
- fetchOffer(); //Sending request for offer again.
+ isConnectionAlive = false;
}
/**
@@ -382,8 +396,10 @@ public class MyPersistentService extends Service {
AnswerBody body = new AnswerBody("555", bodySDP.toString()); //TODO:Use randomly Generate SID from sendRequest
SendAnswerService service = RetroServiceGenerator.createService(SendAnswerService.class);
Observable<AnsResponse> response = service.sendAnswer(GlobalApplication.getHeadersMap(), body);
- serviceDisposable = response.subscribeOn(Schedulers.io())
- .observeOn(AndroidSchedulers.mainThread()).subscribe(this::answerResponseSuccess, this::answerResponseFailure);
+ compositeDisposable.add(
+ response.subscribeOn(Schedulers.io())
+ .observeOn(AndroidSchedulers.mainThread()).subscribe(this::answerResponseSuccess, this::answerResponseFailure)
+ );
}
/**
@@ -407,6 +423,7 @@ public class MyPersistentService extends Service {
*/
private void answerResponseFailure(Throwable throwable) {
Log.e(TAG, "answerResponseFailure: " + throwable.getMessage());
+ isConnectionAlive = false;
}
/**
@@ -417,6 +434,6 @@ public class MyPersistentService extends Service {
//Closing both to avoid memory leak.
mainDataChannel.close();
mainPeerConnection.close();
- fetchOffer(); //Sending request for offer again.
+ isConnectionAlive = false;
}
}
1
0
[snowflake-mobile/master] Removed hardcoded headers from service and added them dynamically
by cohosh@torproject.org 18 Jun '20
by cohosh@torproject.org 18 Jun '20
18 Jun '20
commit f45d55bea8b71051c1941fd6d9d605818eecc09c
Author: Hashik Donthineni <HashikDonthineni(a)gmail.com>
Date: Wed Jun 17 13:25:48 2020 +0530
Removed hardcoded headers from service and added them dynamically
---
.../main/java/org/torproject/snowflake/GlobalApplication.java | 11 +++++++++++
.../java/org/torproject/snowflake/MyPersistentService.java | 6 +++---
.../org/torproject/snowflake/services/GetOfferService.java | 8 ++++++--
.../org/torproject/snowflake/services/SendAnswerService.java | 8 ++++++--
4 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/app/src/main/java/org/torproject/snowflake/GlobalApplication.java b/app/src/main/java/org/torproject/snowflake/GlobalApplication.java
index 288733d..42e3b7f 100644
--- a/app/src/main/java/org/torproject/snowflake/GlobalApplication.java
+++ b/app/src/main/java/org/torproject/snowflake/GlobalApplication.java
@@ -2,10 +2,21 @@ package org.torproject.snowflake;
import android.app.Application;
+import java.util.HashMap;
+import java.util.Map;
+
public class GlobalApplication extends Application {
private final static String BROKER_URL = "http://10.0.2.2:8080"; //10.0.2.2 is used to access computer's local host from Android Emulator.
public static String getBrokerUrl() {
return BROKER_URL;
}
+
+ public static Map<String, String> getHeadersMap() {
+ HashMap<String, String> map = new HashMap<>();
+ map.put("Content-type", "application/json");
+ //http or https shouldn't be part of header or els broker will throw error.
+ map.put("Host", getBrokerUrl().replace("http://", ""));
+ return map;
+ }
}
diff --git a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
index 60cd0e0..91550d6 100644
--- a/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
+++ b/app/src/main/java/org/torproject/snowflake/MyPersistentService.java
@@ -286,7 +286,7 @@ public class MyPersistentService extends Service {
@Override
public void dataChannelStateChange(final DataChannel.State STATE) {
Log.d(TAG, "dataChannelStateChange: Data Channel State: " + STATE);
- if(STATE == DataChannel.State.OPEN){
+ if (STATE == DataChannel.State.OPEN) {
updateNotification("Connection Established. Serving one client.");
}
}
@@ -326,7 +326,7 @@ public class MyPersistentService extends Service {
Log.d(TAG, "fetchOffer: Fetching offer from broker.");
///Retrofit call
final GetOfferService getOfferService = RetroServiceGenerator.createService(GetOfferService.class);
- Observable<SDPOfferResponse> offer = getOfferService.getOffer(new OfferRequestBody("555")); //TODO:Randomly Generate SID.
+ Observable<SDPOfferResponse> offer = getOfferService.getOffer(GlobalApplication.getHeadersMap(), new OfferRequestBody("555")); //TODO:Randomly Generate SID.
serviceDisposable = offer.subscribeOn(Schedulers.io())
.delaySubscription(5000, TimeUnit.MILLISECONDS) //Delay of 5 seconds before sending request to avoid sending too many requests in case of a failure.
.observeOn(AndroidSchedulers.mainThread())
@@ -381,7 +381,7 @@ public class MyPersistentService extends Service {
bodySDP.setSdp(SDPSerializer.serializeAnswer(sessionDescription));
AnswerBody body = new AnswerBody("555", bodySDP.toString()); //TODO:Use randomly Generate SID from sendRequest
SendAnswerService service = RetroServiceGenerator.createService(SendAnswerService.class);
- Observable<AnsResponse> response = service.sendAnswer(body);
+ Observable<AnsResponse> response = service.sendAnswer(GlobalApplication.getHeadersMap(), body);
serviceDisposable = response.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread()).subscribe(this::answerResponseSuccess, this::answerResponseFailure);
}
diff --git a/app/src/main/java/org/torproject/snowflake/services/GetOfferService.java b/app/src/main/java/org/torproject/snowflake/services/GetOfferService.java
index 317bcc5..40a7cb6 100644
--- a/app/src/main/java/org/torproject/snowflake/services/GetOfferService.java
+++ b/app/src/main/java/org/torproject/snowflake/services/GetOfferService.java
@@ -3,13 +3,17 @@ package org.torproject.snowflake.services;
import org.torproject.snowflake.pojo.OfferRequestBody;
import org.torproject.snowflake.pojo.SDPOfferResponse;
+import java.util.Map;
+
import io.reactivex.rxjava3.core.Observable;
import retrofit2.http.Body;
+import retrofit2.http.HeaderMap;
import retrofit2.http.Headers;
import retrofit2.http.POST;
public interface GetOfferService {
@POST("proxy")
- @Headers({"Content-type: application/json", "Host: 10.0.2.2:8080"})
- Observable<SDPOfferResponse> getOffer(@Body OfferRequestBody body);
+ Observable<SDPOfferResponse> getOffer(
+ @HeaderMap Map<String, String> headersMap,
+ @Body OfferRequestBody body);
}
diff --git a/app/src/main/java/org/torproject/snowflake/services/SendAnswerService.java b/app/src/main/java/org/torproject/snowflake/services/SendAnswerService.java
index 8d2f153..af14726 100644
--- a/app/src/main/java/org/torproject/snowflake/services/SendAnswerService.java
+++ b/app/src/main/java/org/torproject/snowflake/services/SendAnswerService.java
@@ -3,13 +3,17 @@ package org.torproject.snowflake.services;
import org.torproject.snowflake.pojo.AnsResponse;
import org.torproject.snowflake.pojo.AnswerBody;
+import java.util.Map;
+
import io.reactivex.rxjava3.core.Observable;
import retrofit2.http.Body;
+import retrofit2.http.HeaderMap;
import retrofit2.http.Headers;
import retrofit2.http.POST;
public interface SendAnswerService {
@POST("answer")
- @Headers({"Content-type: application/json", "Host: 10.0.2.2:8080"})
- Observable<AnsResponse> sendAnswer(@Body AnswerBody body);
+ Observable<AnsResponse> sendAnswer(
+ @HeaderMap Map<String, String> headersMap,
+ @Body AnswerBody body);
}
1
0
commit 30aa04adabeddd304fb6c1b390934cabce6c6ba9
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Jun 17 15:10:55 2020 -0400
restore hs-v3-only-v6.tmpl
---
torrc_templates/hs-v3-only-v6.tmpl | 3 +++
1 file changed, 3 insertions(+)
diff --git a/torrc_templates/hs-v3-only-v6.tmpl b/torrc_templates/hs-v3-only-v6.tmpl
new file mode 100644
index 0000000..0ff8759
--- /dev/null
+++ b/torrc_templates/hs-v3-only-v6.tmpl
@@ -0,0 +1,3 @@
+${include:hs-v3.tmpl}
+# Hidden services are just another kind of client
+${include:client-only-v6.i}
1
0
[chutney/master] Make sure hs-v3-ipv6 has enough authorities too.
by nickm@torproject.org 18 Jun '20
by nickm@torproject.org 18 Jun '20
18 Jun '20
commit 2663148a92fec38ae86cf5738a5ba4af13700152
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed Jun 17 15:13:12 2020 -0400
Make sure hs-v3-ipv6 has enough authorities too.
---
networks/hs-v3-ipv6 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/networks/hs-v3-ipv6 b/networks/hs-v3-ipv6
index 0ea857b..a363991 100644
--- a/networks/hs-v3-ipv6
+++ b/networks/hs-v3-ipv6
@@ -20,7 +20,7 @@ HS6 = Node(tag="h", hs=1, torrc="hs-v3-only-v6.tmpl")
# connections:
# a minimum path length of 3, plus the client-nominated rendezvous point,
# plus a seperate introduction point
-NODES = Authority6.getN(2) + NonExitRelay6.getN(3) + \
+NODES = Authority6.getN(3) + NonExitRelay6.getN(3) + \
Client.getN(1) + Client6.getN(1) + HS6.getN(1)
ConfigureNodes(NODES)
1
0
commit 4d35984f50cb80c53c81d3b211c7aaea3551e923
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu May 28 22:46:01 2020 +0200
Add CDF-DL graph.
Implements #33257.
---
onionperf/visualization.py | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/onionperf/visualization.py b/onionperf/visualization.py
index 339291a..2107d5a 100644
--- a/onionperf/visualization.py
+++ b/onionperf/visualization.py
@@ -44,6 +44,7 @@ class TGenVisualization(Visualization):
self.__plot_lastbyte_box()
self.__plot_lastbyte_bar()
self.__plot_lastbyte_time()
+ self.__plot_throughput_ecdf()
self.__plot_downloads_count()
self.__plot_errors_count()
self.__plot_errors_time()
@@ -61,6 +62,16 @@ class TGenVisualization(Visualization):
transfer["server"] = "onion" if ".onion:" in transfer_data["endpoint_remote"] else "public"
if "elapsed_seconds" in transfer_data:
s = transfer_data["elapsed_seconds"]
+ if "payload_progress" in s:
+ # Explanation of the math below for computing Mbps: From filesize_bytes
+ # and payload_progress fields we can compute the number of seconds that
+ # have elapsed between receiving bytes 524,288 and 1,048,576, which is a
+ # total amount of 524,288 bytes or 4,194,304 bits or 4.194304 megabits.
+ # We want the reciprocal of that value with unit megabits per second.
+ if transfer_data["filesize_bytes"] == 1048576 and "1.0" in s["payload_progress"]:
+ transfer["mbps"] = 4.194304 / (s["payload_progress"]["1.0"] - s["payload_progress"]["0.5"])
+ if transfer_data["filesize_bytes"] == 5242880 and "0.2" in s["payload_progress"]:
+ transfer["mbps"] = 4.194304 / (s["payload_progress"]["0.2"] - s["payload_progress"]["0.1"])
if "first_byte" in s:
transfer["time_to_first_byte"] = s["first_byte"]
if "last_byte" in s:
@@ -119,6 +130,13 @@ class TGenVisualization(Visualization):
title="Time to download last of {0} bytes from {1} service over time".format(bytes, server),
xlabel="Download start time", ylabel="Download time (s)")
+ def __plot_throughput_ecdf(self):
+ for server in self.data["server"].unique():
+ self.__draw_ecdf(x="mbps", hue="label", hue_name="Data set",
+ data=self.data[self.data["server"] == server],
+ title="Throughput when downloading from {0} server".format(server),
+ xlabel="Throughput (Mbps)", ylabel="Cumulative Fraction")
+
def __plot_downloads_count(self):
for bytes in np.sort(self.data["filesize_bytes"].unique()):
for server in self.data["server"].unique():
1
0
18 Jun '20
commit 6a3ea78085532ce726a1e32413c99fc9f41a8d2b
Merge: 2c19e94 4d35984
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu Jun 18 15:33:45 2020 +0200
Merge branch 'task-33257-2' into develop
onionperf/visualization.py | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
1
0
[translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
by translation@torproject.org 18 Jun '20
by translation@torproject.org 18 Jun '20
18 Jun '20
commit 0d04ecd0d6c0a6ed6a0e5bd3dd5bb8d8299a56dd
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 18 13:17:00 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
---
contents+it.po | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/contents+it.po b/contents+it.po
index 4bc4ea01ae..c66e5b623a 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -912,6 +912,9 @@ msgid ""
"the option \"Select a built-in bridge,\" choose whichever pluggable "
"transport you'd like to use from the dropdown."
msgstr ""
+"Nella sezione \"Bridge\", seleziona la casella \"Usa un bridge\" e "
+"dall'opzione \"Seleziona un bridge incorporato\", scegli il trasporto "
+"collegabile che desideri utilizzare dal menu a discesa."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -919,6 +922,8 @@ msgstr ""
#: (content/bridges/contents+en.lrtopic.body)
msgid "Your settings will automatically be saved once you close the tab."
msgstr ""
+"Le tue impostazioni verranno automaticamente salvate quando chiudi la "
+"scheda."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -940,6 +945,8 @@ msgid ""
"If you are trying to circumvent a blocked connection for the first time, you"
" should try the different transports: obfs4, snowflake, or meek-azure."
msgstr ""
+"Se stai cercando di aggirare una connessione bloccata per la prima volta, "
+"dovresti provare i diversi trasporti: obfs4, snowflake o meek-azure."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -947,6 +954,8 @@ msgid ""
"If you try all of these options, and none of them gets you online, you will "
"need to request a bridge or manually enter bridge addresses."
msgstr ""
+"Se provi tutte queste opzioni e nessuna di esse ti connette, dovrai "
+"richiedere un bridge o inserirne manualmente gli indirizzi."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -954,6 +963,8 @@ msgid ""
"Read the [Bridges](../bridges/) section to learn what bridges are and how to"
" obtain them."
msgstr ""
+"Leggi la sezione [Bridges](../bridges/) per imparare cosa sono i bridge e "
+"come ottenerli."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.title)
@@ -1064,6 +1075,8 @@ msgid ""
"If you're starting Tor Browser for the first time, click \"Configure\" to "
"open the Tor Network Settings window."
msgstr ""
+"Se stai avviando Tor Browser per la prima volta, fai clic su \"Configura\" "
+"per aprire la finestra Impostazioni di Rete Tor."
#: https//tb-manual.torproject.org/bridges/
#: (content/bridges/contents+en.lrtopic.body)
1
0
[translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
by translation@torproject.org 18 Jun '20
by translation@torproject.org 18 Jun '20
18 Jun '20
commit 21e6174e840da06ba561cf22f2760985ed8d0a9e
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 18 12:47:36 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot
---
contents+it.po | 8 ++++++--
contents+pl.po | 30 +++++++++++++++++++++++-------
2 files changed, 29 insertions(+), 9 deletions(-)
diff --git a/contents+it.po b/contents+it.po
index 0cab4be7d9..4bc4ea01ae 100644
--- a/contents+it.po
+++ b/contents+it.po
@@ -9,12 +9,12 @@
# c6497ab8ee8a3906bb861267dec9a84b_bc40ce0 <0329ec65fa3a66db7a8a2a698d66d850_156421>, 2019
# fabio carletti <fabiocarlettiryuw(a)gmail.com>, 2019
# Emma Peel, 2020
-# Random_R, 2020
# Davide Sant <spuuu(a)outlook.it>, 2020
# erinm, 2020
# Luke <94lukecatellani(a)gmail.com>, 2020
# Giandomenico Lombardi <transifex.com(a)l1t.it>, 2020
# Irene Quadrelli <irene.quadrelli(a)gmail.com>, 2020
+# Random_R, 2020
#
msgid ""
msgstr ""
@@ -22,7 +22,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-12 08:00+CET\n"
"PO-Revision-Date: 2018-11-14 12:31+0000\n"
-"Last-Translator: Irene Quadrelli <irene.quadrelli(a)gmail.com>, 2020\n"
+"Last-Translator: Random_R, 2020\n"
"Language-Team: Italian (https://www.transifex.com/otf/teams/1519/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -891,6 +891,8 @@ msgid ""
"Once you've selected the pluggable transport, click \"Connect\" to save your"
" settings."
msgstr ""
+"Dopo aver selezionato il trasporto collegabile, fai clic su \"Connetti\" per"
+" salvare le impostazioni."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
@@ -900,6 +902,8 @@ msgid ""
"Or, if you have Tor Browser running, click on \"Preferences\" in the "
"hamburger menu and then on \"Tor\" in the sidebar."
msgstr ""
+"Oppure, se stai usando Tor Browser, fai clic su \"Preferenze\" nel menù "
+"hamburger e poi su \"Tor\" nella barra laterale."
#: https//tb-manual.torproject.org/circumvention/
#: (content/circumvention/contents+en.lrtopic.body)
diff --git a/contents+pl.po b/contents+pl.po
index 77c4d63d44..b38c6f9b94 100644
--- a/contents+pl.po
+++ b/contents+pl.po
@@ -2973,7 +2973,7 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### UNINSTALLING"
-msgstr ""
+msgstr "### ODINSTALOWANIE"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -2981,6 +2981,8 @@ msgid ""
"Tor Browser for Android can be uninstalled directly from F-droid, Google "
"Play or from your mobile device's app settings."
msgstr ""
+"Przeglądarkę Tor Browser w systemie Android można odinstalować bezpośrednio "
+"z F-droid, Google Play lub z ustawień aplikacji urządzenia mobilnego."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -2989,6 +2991,9 @@ msgid ""
"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
"Android on Google Play\">"
msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-google-play.png\" alt=\"Uninstalling Tor Browser for "
+"Android on Google Play\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3011,6 +3016,9 @@ msgid ""
"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
"on F-droid\">"
msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-f-droid.png\" alt=\"Uninstalling Tor Browser for Android "
+"on F-droid\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3018,11 +3026,13 @@ msgid ""
"On the next screen, select Tor Browser and finally click on the "
"\"Uninstall\" button."
msgstr ""
+"Na następnym ekranie wybierz Tor Browser i na koniec kliknij przycisk "
+"„Odinstaluj”."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "#### Mobile device app settings"
-msgstr ""
+msgstr "#### Ustawienia aplikacji na urządzenia mobilne"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3031,6 +3041,9 @@ msgid ""
"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
"Android using device app settings\">"
msgstr ""
+"<img style=\"max-width:300px\" class=\"col-md-6\" src=\"../../static/images"
+"/android-uninstall-device-settings.png\" alt=\"Uninstalling Tor Browser for "
+"Android using device app settings\">"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3104,6 +3117,9 @@ msgid ""
"Orfox was first released in 2015 by The Guardian Project, with the aim of "
"giving Android users a way to browse the internet over Tor."
msgstr ""
+"Orfox został wydany po raz pierwszy w 2015 roku przez The Guardian Project, "
+"aby umożliwić użytkownikom systemu Android przeglądanie Internetu za pomocą "
+"przegladarki Tor."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3129,12 +3145,12 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "Android was released."
-msgstr ""
+msgstr "Android został wydany."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "#### Orbot"
-msgstr ""
+msgstr "#### Orbot"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3172,12 +3188,12 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### Tor Browser for iOS"
-msgstr ""
+msgstr "### Tor Browser dla iOS"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "There is no Tor Browser for iOS."
-msgstr ""
+msgstr "Nie ma przeglądarki Tor Browser dla iOS."
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
@@ -3218,7 +3234,7 @@ msgstr ""
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
msgid "### Tor Browser for Windows Phone"
-msgstr ""
+msgstr "### Tor Browser dla Windows Phone"
#: https//tb-manual.torproject.org/mobile-tor/
#: (content/mobile-tor/contents+en.lrtopic.body)
1
0
[translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
by translation@torproject.org 18 Jun '20
by translation@torproject.org 18 Jun '20
18 Jun '20
commit 92de4aae16ee2c78f73184c8880093247c532ea6
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Jun 18 12:47:00 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
ach.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
af.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ar.po | 62 +++++++++++++++++++++++++++++++++++++++++++++++++-------------
ast.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
az.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
be.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
bg.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
bn.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
br.po | 60 +++++++++++++++++++++++++++++++++++++++++++++++-------------
bs.po | 56 +++++++++++++++++++++++++++++++++++++++++++-------------
ca.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
cs.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
cy.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
da.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
de.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
el.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
en_GB.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
eo.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
es.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
es_AR.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
es_MX.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
et.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
eu.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
fa.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
fi.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
fr.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
fy.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ga.po | 60 +++++++++++++++++++++++++++++++++++++++++++++++-------------
gd.po | 56 ++++++++++++++++++++++++++++++++++++++++++++------------
gl.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
gu.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
he.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
hi.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
hr.po | 56 +++++++++++++++++++++++++++++++++++++++++++-------------
hu.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
hy.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ia.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
id.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
is.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
it.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
ja.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
ka.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
kab.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
kk.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
km.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
kn.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ko.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
lt.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
lv.po | 56 +++++++++++++++++++++++++++++++++++++++++++-------------
mk.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ml.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
mr.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ms_MY.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
my.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
nb.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ne.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
nl.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
nl_BE.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
nn.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
oc.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
or.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
pa.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
pl.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
pt_BR.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
pt_PT.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ro.po | 56 +++++++++++++++++++++++++++++++++++++++++++-------------
ru.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
si_LK.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
sk.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
sl.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
son.po | 50 ++++++++++++++++++++++++++++++++++++++------------
sq.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
sr.po | 56 +++++++++++++++++++++++++++++++++++++++++++-------------
sv.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
sw.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
ta.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
tails.pot | 52 ++++++++++++++++++++++++++++++++++++++++------------
te.po | 52 ++++++++++++++++++++++++++++++++++++++++------------
th.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
tr.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
uk.po | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
ur.po | 54 +++++++++++++++++++++++++++++++++++++++++-------------
uz.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
vi.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
zh_CN.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
zh_HK.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
zh_TW.po | 52 +++++++++++++++++++++++++++++++++++++++-------------
87 files changed, 3606 insertions(+), 1122 deletions(-)
diff --git a/ach.po b/ach.po
index 8fc1797b90..bc9c99e7f1 100644
--- a/ach.po
+++ b/ach.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/af.po b/af.po
index 64628ac5ee..1966a4052b 100644
--- a/af.po
+++ b/af.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ar.po b/ar.po
index f949a2f80b..234b195ee5 100644
--- a/ar.po
+++ b/ar.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-19 17:56+0000\n"
-"Last-Translator: Ilyes Chouia <celyes02(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -762,7 +762,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "خطأ"
@@ -837,7 +837,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -853,6 +853,42 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1160,7 +1196,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1173,7 +1209,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "خطأ:"
@@ -1278,37 +1314,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ast.po b/ast.po
index f2bbbb68c0..188a68c49a 100644
--- a/ast.po
+++ b/ast.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/az.po b/az.po
index 4e0b71753f..6572c6dd7e 100644
--- a/az.po
+++ b/az.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/be.po b/be.po
index 028e5a869e..b8709898d0 100644
--- a/be.po
+++ b/be.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-09 17:00+0000\n"
-"Last-Translator: Đorđe Marušić <djordje(a)hzontal.org>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1284,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/bg.po b/bg.po
index 1d5c2552f1..48fc863e85 100644
--- a/bg.po
+++ b/bg.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -748,7 +748,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -823,7 +823,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -839,6 +839,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1146,7 +1174,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1159,7 +1187,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1264,37 +1292,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/bn.po b/bn.po
index 6348cb3039..827a552b96 100644
--- a/bn.po
+++ b/bn.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -830,6 +830,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1137,7 +1165,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1178,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1255,37 +1283,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/br.po b/br.po
index ed1258fc72..775ec0c31e 100644
--- a/br.po
+++ b/br.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,40 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1169,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1182,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1287,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/bs.po b/bs.po
index e7e8b16274..fc7381ecd1 100644
--- a/bs.po
+++ b/bs.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-12 06:14+0000\n"
-"Last-Translator: Vojtech Kotek <kotek.vojtech(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,36 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ca.po b/ca.po
index 0e9cef2322..7c70beb4c0 100644
--- a/ca.po
+++ b/ca.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 14:52+0000\n"
-"Last-Translator: jmontane\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -753,7 +753,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Error"
@@ -828,7 +828,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -844,6 +844,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1151,7 +1179,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "El falsejament de la identitat de l'adreça MAC ha fallat per la targeta de xarxa ${nic_name} (${nic}). També ha fallat la recuperació d'errors i tot el treball en xarxa està desactivat.\nPotser preferireu reiniciar el Tails i desactivar el falsejament de l'adreça MAC "
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1164,7 +1192,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "Hi ha hagut un error:"
@@ -1269,37 +1297,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/cs.po b/cs.po
index fae38939b3..71ef779434 100644
--- a/cs.po
+++ b/cs.po
@@ -22,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-28 20:42+0000\n"
-"Last-Translator: David Nowak <user412(a)secmail.pro>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -751,7 +751,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Chyba"
@@ -826,7 +826,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -842,6 +842,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Zamknout obrazovku"
@@ -1149,7 +1181,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1162,7 +1194,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "chyba:"
@@ -1267,37 +1299,37 @@ msgstr "{partition_name} na {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/cy.po b/cy.po
index 452d0b27ca..e07b35c3ab 100644
--- a/cy.po
+++ b/cy.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -830,6 +830,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1137,7 +1169,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1182,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1255,37 +1287,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/da.po b/da.po
index eccd97cb2c..31ec03b12d 100644
--- a/da.po
+++ b/da.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-07 14:38+0000\n"
-"Last-Translator: scootergrisen\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -749,7 +749,7 @@ msgstr "Opsæt vedvarende diskområde i Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Fejl"
@@ -824,7 +824,7 @@ msgid ""
"You may now close this application."
msgstr "De ændringer du har foretaget vil først træde i kraft efter Tails er blevet genstartet.\n\nDu kan nu lukke programmet."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su er deaktiveret. Brug venligst sudo i stedet."
@@ -840,6 +840,34 @@ msgid ""
"option?"
msgstr "Kan ikke finde drevet som Tails kører fra. Måske bruger du 'toram'-valgmuligheden?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Lås skærm"
@@ -1147,7 +1175,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "MAC spoofing mislykkedes for netværkskortet ${nic_name} (${nic}). Fejlgendannelsen mislykkedes også, så al netværk er deaktiveret. \nDu vil måske foretrække at genstarte Tails og deaktivere MAC spoofing."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1160,7 +1188,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Der er ikke nok ledig hukommelse til at søge efter opgraderinger.</b>\n\nSørg for at systemet lever op til kravene for at køre Tails.\nSe file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPrøv at genstarte Tails for at søge efter opgraderinger igen.\n\nEller foretag en manuel opgradering.\nSe https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "fejl:"
@@ -1265,37 +1293,37 @@ msgstr "{partition_name} på {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Forkert adgangskode eller parametre"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Fejl ved oplåsning af diskområde"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Kunne ikke låse op for diskområdet {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "En eller flere programmer bruger diskområdet."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Kunne ikke låse diskområdet {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Låsning af diskområdet mislykkedes"
diff --git a/de.po b/de.po
index 2c58e3443d..651c7cb73f 100644
--- a/de.po
+++ b/de.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-26 15:22+0000\n"
-"Last-Translator: Ettore Atalan <atalanttore(a)googlemail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: German (http://www.transifex.com/otf/torproject/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -766,7 +766,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Fehler"
@@ -841,7 +841,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -857,6 +857,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Sperrbildschirm"
@@ -1164,7 +1192,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1177,7 +1205,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "Fehler:"
@@ -1282,37 +1310,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/el.po b/el.po
index 00a1b081b5..1ff935dd0a 100644
--- a/el.po
+++ b/el.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-06-03 07:11+0000\n"
-"Last-Translator: george k <norhorn(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -757,7 +757,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Σφάλμα"
@@ -832,7 +832,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -848,6 +848,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Κλείδωμα οθόνης"
@@ -1155,7 +1183,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Η μεταμφίεση της MAC απέτυχε για την κάρτα δικτύου ${nic_name} (${nic}). Απέτυχε επίσης και η ανάκτηση από αυτό το σφάλμα, και έτσι η δικτύωση απενεργοποιήθηκε.\nΊσως είναι καλύτερα να επανεκκινήσετε το Tails και να απενεργοποιήσετε την μεταμφίεση της MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1168,7 +1196,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "σφάλμα:"
@@ -1273,37 +1301,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/en_GB.po b/en_GB.po
index ccbdf64305..8aa7f65938 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-02 21:19+0000\n"
-"Last-Translator: Andi Chandler <andi(a)gowling.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -740,7 +740,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -815,7 +815,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -831,6 +831,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1138,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1151,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1256,37 +1284,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/eo.po b/eo.po
index 2d53709d5f..e0015c1ec7 100644
--- a/eo.po
+++ b/eo.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/es.po b/es.po
index ff5d1e237f..516dee518d 100644
--- a/es.po
+++ b/es.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 17:02+0000\n"
-"Last-Translator: eulalio barbero espinosa <eulaliob(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -747,7 +747,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Error"
@@ -822,7 +822,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su está desactivado. En su lugar usa sudo."
@@ -838,6 +838,34 @@ msgid ""
"option?"
msgstr "La unidad desde la que se está ejecutando Tails no se puede encontrar. ¿Quizás has elegido la opción 'toram'?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Bloquear pantalla"
@@ -1145,7 +1173,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Falló el MAC spoofing para la tarjeta de red ${nic_name} (${nic}). La recuperación de errores también falló porque toda la red está deshabilitada.\nQuizás prefieras reiniciar Tails y deshabilitar el MAC spoofing."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1158,7 +1186,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "<b>No hay suficiente memoria disponible para comprobar las actualizaciones.</b>\n\nAsegúrate de que el sistema cumple con los requisitos para ejecutar Tails.\nLee file:///usr/share/doc/tails/website/doc/about/requirements.es.html\n\nIntenta reiniciar Tails para comprobar las actualizaciones de nuevo.\n\nO realiza una actualización manual.\nLee https://tails.boum.org/doc/first_steps/upgrade#manual"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "error:"
@@ -1263,37 +1291,37 @@ msgstr "{partition_name} en {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Contraseña o parámetros incorrectos"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Error al desbloquear el volumen"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "No se pudo desbloquear el volumen {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Una o más aplicaciones tienen el volumen ocupado."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "No se pudo bloquear el volumen {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "El bloqueo del volumen falló"
diff --git a/es_AR.po b/es_AR.po
index 75e0be1dcc..57d4a93857 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-17 22:26+0000\n"
-"Last-Translator: Burro Moro <burromoro(a)riseup.net>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -744,7 +744,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Error"
@@ -819,7 +819,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su está deshabilitado. Por favor usar sudo en vez."
@@ -835,6 +835,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Bloquear pantalla"
@@ -1142,7 +1170,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Falsificación de MAC para placa de red ${nic_name} (${nic}) falló. La recuperación de error también falló, por lo que las funciones de red están deshabilitadas.\nQuizás prefieras reiniciar Tails y deshabilitar esta función."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1155,7 +1183,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>No hay suficiente memoria disponible para comprobar nuevas versiones.</b>\n\nAsegurate que éste sistema satisface los requerimientos para correr Tails.\nMirá file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIntentá reiniciar Tails para comprobar nuevamente por actualizaciones.\n\nO hacé una actualización manual.\nMirá https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "error:"
@@ -1260,37 +1288,37 @@ msgstr "{partition_name} en {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Frase de contraseña o parámetros erróneos"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Error desbloqueando volumen"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "No se pudo desbloquear volumen {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/es_MX.po b/es_MX.po
index 5272b3fcdf..e516d318bf 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/et.po b/et.po
index a45fb9518e..7a7cf5ea63 100644
--- a/et.po
+++ b/et.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-31 17:59+0000\n"
-"Last-Translator: Madis Otenurm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/eu.po b/eu.po
index 64a0cf8c45..09b4fc74a7 100644
--- a/eu.po
+++ b/eu.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -743,7 +743,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -818,7 +818,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -834,6 +834,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1141,7 +1169,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1154,7 +1182,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1259,37 +1287,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/fa.po b/fa.po
index cf634c36ea..de3008513f 100644
--- a/fa.po
+++ b/fa.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-17 17:36+0000\n"
-"Last-Translator: Hamid reza Zaefarani\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -765,7 +765,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -840,7 +840,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -856,6 +856,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1163,7 +1191,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1176,7 +1204,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1281,37 +1309,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/fi.po b/fi.po
index 5966859d9b..6a375375b8 100644
--- a/fi.po
+++ b/fi.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -746,7 +746,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Virhe"
@@ -821,7 +821,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -837,6 +837,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1144,7 +1172,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1157,7 +1185,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "virhe:"
@@ -1262,37 +1290,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/fr.po b/fr.po
index 87ec1070ed..64751cb139 100644
--- a/fr.po
+++ b/fr.po
@@ -40,9 +40,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-03 17:26+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -769,7 +769,7 @@ msgstr "Configurer le volume persistant de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Erreur"
@@ -844,7 +844,7 @@ msgid ""
"You may now close this application."
msgstr "Toute modification effectuée ne prendra effet qu’après redémarrage de Tails.\n\nVous pouvez maintenant fermer cette application."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su est désactivé. Merci d’utiliser sudo à la place."
@@ -860,6 +860,34 @@ msgid ""
"option?"
msgstr "Le périphérique sur lequel Tails tourne ne peut pas être trouvé. Peut-être avez-vous utilisée l’option 'toram' ?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Verrouillage de l’écran"
@@ -1167,7 +1195,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "L’usurpation d’adresse MAC a échoué pour la carte réseau ${nic_name} (${nic}). Le dépannage de cette erreur a également échoué, toutes les fonctions de réseau sont désactivées.\nVous pourriez préférer redémarrer Tails et désactiver l’usurpation d’adresse MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1180,7 +1208,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Il n’y a pas assez de mémoire disponible pour vérifier les mises à jour.</b>\n\nAssurez-vous que cet ordinateur satisfait les conditions requises pour utiliser Tails.\nVoir file:///usr/share/doc/tails/website/doc/about/requirements.fr.html\n\nEssayez de redémarrer Tails pour vérifier à nouveau les mises à jour.\n\nOu effectuez une mise à jour manuelle.\nVoir https://tails.boum.org/doc/first_steps/upgrade/index.fr.html#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "erreur :"
@@ -1285,37 +1313,37 @@ msgstr "{partition_name} sur {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Mauvaise phrase de passe ou mauvais paramètres"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Erreur de déverrouillage du volume"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Impossible de déverrouiller le volume {volume_name} :\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Une ou plusieurs applications tiennent le volume occupé."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Impossible de verrouiller le volume {volume_name} :\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Échec de verrouillage du volume"
diff --git a/fy.po b/fy.po
index 60939baaa4..be2e581a87 100644
--- a/fy.po
+++ b/fy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ga.po b/ga.po
index 09886cae26..8162dfa89c 100644
--- a/ga.po
+++ b/ga.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Earráid"
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "Tá su díchumasaithe. Bain úsáid as sudo ina áit."
@@ -829,6 +829,40 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Cuir an scáileán faoi ghlas"
@@ -1136,7 +1170,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Theip ar dhallamullóg MAC ar chárta líonra ${nic_name} (${nic}). Theip ar athshlánú ón earráid freisin, agus díchumasaíodh líonrú go hiomlán dá bharr sin.\nB'fhéidir gurbh fhearr leat Tails a atosú agus dallamullóg MAC a dhíchumasú."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1183,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Níl go leor cuimhne agat le nuashonruithe a lorg.</b>\n\nBa chóir duit deimhniú go gcomhlíonann an córas seo na riachtanais chun Tails a úsáid.\nFéach file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nAtosaigh Tails agus bain triail eile as.\n\nNó déan nuashonrú de láimh.\nFéach https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "earráid:"
@@ -1254,37 +1288,37 @@ msgstr "{partition_name} ar {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Frása faire mícheart nó paraiméadair mhíchearta"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Earráid agus an t-imleabhar á dhíghlasáil"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Níorbh fhéidir imleabhar {volume_name}: a dhíghlasáil:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Tá an t-imleabhar in úsáid cheana ag feidhmchlár nó feidhmchláir eile."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Níorbh fhéidir imleabhar {volume_name} a ghlasáil:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Níorbh fhéidir an t-imleabhar a ghlasáil"
diff --git a/gd.po b/gd.po
index 2c061a8475..d5acde9a17 100644
--- a/gd.po
+++ b/gd.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1284,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/gl.po b/gl.po
index 5e8091b3ea..4d52daaf76 100644
--- a/gl.po
+++ b/gl.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -830,6 +830,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1137,7 +1165,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1178,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1255,37 +1283,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/gu.po b/gu.po
index ba3d3ffbeb..c3d4196c4e 100644
--- a/gu.po
+++ b/gu.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: Drashti Pandya <drashtipandya37(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/he.po b/he.po
index 33aa02eea8..3cfcf4fd68 100644
--- a/he.po
+++ b/he.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-28 22:07+0000\n"
-"Last-Translator: ION\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -744,7 +744,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "שגיאה"
@@ -819,7 +819,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -835,6 +835,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "נעל מסך"
@@ -1142,7 +1174,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "זיוף MAC נכשל עבור כרטיס הרשת ${nic_name} (${nic}). השבת השגיאה נכשלה אף היא כך שכל הרישות מושבת.\nאולי תעדיף להפעיל מחדש את Tails ולהשבית זיוף MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1155,7 +1187,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>אין מספיק זיכרון זמין כדי לבדוק אחר שדרוגים.</b>\n\nוודא שמערכת זו עומדת בדרישות להרצת Tails.\nראה file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nנסה להפעיל מחדש את Tails כדי לבדוק שוב אחר שדרוגים.\n\nאו בצע שדרוג ידני.\nראה https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "שגיאה:"
@@ -1260,37 +1292,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/hi.po b/hi.po
index b78544c1a7..a1e4c19bb8 100644
--- a/hi.po
+++ b/hi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-19 04:21+0000\n"
-"Last-Translator: Kalyan Dikshit <dikshitrocks93(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Hindi (http://www.transifex.com/otf/torproject/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/hr.po b/hr.po
index ea7b389df1..a4d44659b1 100644
--- a/hr.po
+++ b/hr.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-04 12:41+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr "Postavi Tails trajni pogon"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Greška"
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr "Promjene će djelovati tek nakon ponovnog pokretanja Tailsa.\n\nSada možeš zatvoriti ovu aplikaciju."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su je deaktivirano. Umjesto toga, koristi sudo."
@@ -830,6 +830,36 @@ msgid ""
"option?"
msgstr "Ne može se pronaći pogon s kojeg se pokreće Tails. Možda si koristio/la opciju „toram”?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Zaključaj ekran"
@@ -1137,7 +1167,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "MAC oponašanje nije uspjelo za mrežnu karticu ${nic_name} (${nic}). Oporavljanje od greške također nije uspjelo tako da je sav mrežni rad deaktiviran.\nPokušaj ponovno pokrenuti Tails i deaktivirati MAC oponašanje."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1180,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "„Nema dovoljno memorije za provjeru nadogradnji.\n\nProvjeri, zadovoljava li ovaj sustav zahtjeve za pokretanje Tailsa.\nPogledaj file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPokušaj ponovo pokrenuti Tails za ponovnu provjeru nadogradnji.\n\nIli nadogradi ručno.\nPogledajte https://tails.boum.org/doc/first_steps/upgrade#manual”"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "greška:"
@@ -1255,37 +1285,37 @@ msgstr "{partition_name} na {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Kriva lozinka ili parametar"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Greška pri otključavanju pogona"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Neuspjelo otključavanje pogona {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Jedna ili više aplikacija zapošljavaju pogon."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Neuspjelo zaključavanje pogona {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Neuspjelo zaključavanje pogona"
diff --git a/hu.po b/hu.po
index bbdb4c30ab..3f9c9bafe6 100644
--- a/hu.po
+++ b/hu.po
@@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-16 08:58+0000\n"
-"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -745,7 +745,7 @@ msgstr "Tails tartós kötet telepítése"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Hiba"
@@ -820,7 +820,7 @@ msgid ""
"You may now close this application."
msgstr "Bármilyen változtatás történt csak a Tails újraindítása után lép érvénybe.\n\nBezárhatja az alkalmazást."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "Az su tiltott. Használjon sudo-t helyette."
@@ -836,6 +836,34 @@ msgid ""
"option?"
msgstr "Nem található a meghajtó, amiről a Tails fut. Talán a `toram' opciót használta?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Képernyőzár"
@@ -1143,7 +1171,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "A MAC cím váltás a következő hálózati kártyán sikertelen volt: ${nic_name} (${nic}). A hibaelhárítás is sikertelen volt, úgyhogy a hálózati kártya le lett tiltva.\nÚjraindíthatja a Tails-t és letilthatja a MAC cím cserét."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1156,7 +1184,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Not enough memory available to check for upgrades.</b>\n\nEllenőrizze, hogy a rendszere kielégíti-e a Tails futtatásához szükséges követelményeket.\nLásd file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPróbálja meg újraindítani a Tails-t, hogy ismét ellenőrizze a frissítéseket.\n\nVagy végezzen egy manuális frissítést.\nLásd https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "hiba:"
@@ -1261,37 +1289,37 @@ msgstr "{partition_name} a {drive_name} drive-on"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Rossz jelszó vagy paraméterek"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Hiba a kötet feloldása során"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Sikertelen a(z) {volume_name} kötet feloldása:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Egy vagy több alkalmazás a kötetet használja."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Sikertelen a(z) {volume_name} kötet zárolása:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Kötet zárolása sikertelen"
diff --git a/hy.po b/hy.po
index 961d9409d6..38111acae1 100644
--- a/hy.po
+++ b/hy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ia.po b/ia.po
index 41405bf8a6..096468750d 100644
--- a/ia.po
+++ b/ia.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Interlingua (http://www.transifex.com/otf/torproject/language/ia/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/id.po b/id.po
index 10310995a8..ed930f9863 100644
--- a/id.po
+++ b/id.po
@@ -22,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -751,7 +751,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -826,7 +826,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -842,6 +842,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1149,7 +1175,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1162,7 +1188,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1267,37 +1293,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/is.po b/is.po
index a54c18bc9d..9d96a44458 100644
--- a/is.po
+++ b/is.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-29 11:06+0000\n"
-"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/it.po b/it.po
index b13589301f..4caf20b555 100644
--- a/it.po
+++ b/it.po
@@ -33,8 +33,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-30 13:37+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:41+0000\n"
"Last-Translator: Random_R\n"
"Language-Team: Italian (http://www.transifex.com/otf/torproject/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -762,7 +762,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Errore"
@@ -837,7 +837,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su è disattivato. Per favore usa sudo."
@@ -853,6 +853,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Blocca schermo"
@@ -1160,7 +1188,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "L'oscuramento dell'indirizzo MAC è fallito per la scheda di rete ${nic_name} (${nic}). Anche il ripristino dell'errore è fallito, pertanto la rete è disabilitata.\nSi potrebbe voler riavviare Tails e disabilitare l'oscuramento dell'indirizzo MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1173,7 +1201,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Memoria insufficiente per controllare gli aggiornamenti.</b>\n\nAssicurati che questo sistema soddisfi i requisiti per usare Tails.\nVedi file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nProva a riavviare Tails per controllare di nuovo gli aggiornamenti.\n\nOppure fai un aggiornamento manuale.\nVedi https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "errore:"
@@ -1278,37 +1306,37 @@ msgstr "{partition_name} su {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Password o parametri non corretti"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Errore sblocco volume"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Impossibile sbloccare il volume {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Una o più applicazioni stanno tenendo occupato il volume."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Impossibile bloccare il volume {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Blocco del volume fallito"
diff --git a/ja.po b/ja.po
index 602d9739f8..a2e6a108d1 100644
--- a/ja.po
+++ b/ja.po
@@ -29,9 +29,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-06-03 07:44+0000\n"
-"Last-Translator: 323484\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Japanese (http://www.transifex.com/otf/torproject/language/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -758,7 +758,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -833,7 +833,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -849,6 +849,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1156,7 +1182,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1169,7 +1195,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1274,37 +1300,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ka.po b/ka.po
index 6e81848d92..3665821fe3 100644
--- a/ka.po
+++ b/ka.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-31 11:30+0000\n"
-"Last-Translator: Georgianization\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -830,6 +830,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1137,7 +1165,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1178,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1255,37 +1283,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/kab.po b/kab.po
index 6e2aa58102..9dd4b307cb 100644
--- a/kab.po
+++ b/kab.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/kk.po b/kk.po
index 90aa503f7c..7afbb39676 100644
--- a/kk.po
+++ b/kk.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/km.po b/km.po
index 54dfdb2491..d4a1efbbc1 100644
--- a/km.po
+++ b/km.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "កំហុស"
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "កំហុស៖"
@@ -1254,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/kn.po b/kn.po
index 942a0a31cf..014c9b9434 100644
--- a/kn.po
+++ b/kn.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kannada (http://www.transifex.com/otf/torproject/language/kn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ko.po b/ko.po
index 2880d5a62e..3cf748eb19 100644
--- a/ko.po
+++ b/ko.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -744,7 +744,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -819,7 +819,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -835,6 +835,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1142,7 +1168,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1155,7 +1181,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1260,37 +1286,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/lt.po b/lt.po
index 1a447fec47..b58e3a560d 100644
--- a/lt.po
+++ b/lt.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 16:55+0000\n"
-"Last-Translator: Moo\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -739,7 +739,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Klaida"
@@ -814,7 +814,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su yra išjungta. Vietoj to, naudokite sudo."
@@ -830,6 +830,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Užrakinti ekraną"
@@ -1137,7 +1169,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1150,7 +1182,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Naujinimų tikrinimui nepakanka prieinamos atminties.</b>\n\nĮsitikinkite, kad ši sistema tenkina Tails paleidimo reikalavimus.\nŽiūrėkite file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nNorėdami dar kartą tikrinti naujinimus, pabandykite paleisti Tails iš naujo.\n\nArba atlikite naujinimą rankiniu būdu.\nŽiūrėkite https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "klaida:"
@@ -1255,37 +1287,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Neteisinga slaptafrazė arba parametrai"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Klaida atrakinant tomą"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/lv.po b/lv.po
index 1f0c135c25..6fa1c55622 100644
--- a/lv.po
+++ b/lv.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,36 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1284,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/mk.po b/mk.po
index edc51e0499..2dc2fd6f9b 100644
--- a/mk.po
+++ b/mk.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-12 16:34+0000\n"
-"Last-Translator: Liljana Ackovska <liljanagjurova(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -740,7 +740,7 @@ msgstr "Поставување на постојан простор на Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Грешка"
@@ -815,7 +815,7 @@ msgid ""
"You may now close this application."
msgstr "Сите промени кои ќе ги превземете ќе имаат ефект само откако повторно ќе го стартувате Tails.\n\nСега можете да ја затворите апикацијата."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su е оневозможен. Ве молиме користете sudo"
@@ -831,6 +831,34 @@ msgid ""
"option?"
msgstr "Дискот од кој работи Tails не може да биде пронајден. Можеби ја користите 'toram' опцијата?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Екран за заклучување"
@@ -1138,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "MAC спуфингот не успеа за мрежната картичка ${nic_name} (${nic}). Враќањето на грешката исто така не успеа па целото мрежно поврзување беше оневозможено.\nМожеби повеќе ќе сакате повторно да го стартувате Tails и да го оневозможите MAC спуфингот. "
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1151,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Нема доволно достапна меморија за проверка за надградби.</b>\n\nБидете сигурни дека овој систем ги задоволува барањата за работење на Tails.\nВидете file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nОбидете се повторно да го стартувате Tails за повторно да проверите за надградби.\n\nИли направете рачна надградба.\nВидете https://tails.boum.org/doc/first_steps/upgrade#manual\" "
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "грешка:"
@@ -1256,37 +1284,37 @@ msgstr "{partition_name} on {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Грешна лозинка или параметри"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Грешка при отклучување на просторот"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Просторот не можеше да биде отклучен {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Една или повеќе апликации го чуваат просторот зафатен."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Просторот не можеше да биде заклучен {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Заклучувањето на просторот не успеа"
diff --git a/ml.po b/ml.po
index fd6c1279a7..d52a78968c 100644
--- a/ml.po
+++ b/ml.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: ameer pb <ameerpbekm(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/mr.po b/mr.po
index 0d7c04754d..d982d6b932 100644
--- a/mr.po
+++ b/mr.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-06-02 16:39+0000\n"
-"Last-Translator: vinay bichave <vinaybichave4(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Marathi (http://www.transifex.com/otf/torproject/language/mr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ms_MY.po b/ms_MY.po
index 72126e5f90..cd46a9ab5f 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: abuyop <abuyop(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -740,7 +740,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -815,7 +815,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -831,6 +831,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1138,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1151,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1256,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/my.po b/my.po
index ecbfce0720..3950be943c 100644
--- a/my.po
+++ b/my.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1160,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1173,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1278,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/nb.po b/nb.po
index d27a9a0ffb..9991945560 100644
--- a/nb.po
+++ b/nb.po
@@ -22,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-01 23:48+0000\n"
-"Last-Translator: LarsMagnusHerland <lars.magnus(a)herland.priv.no>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -751,7 +751,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -826,7 +826,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -842,6 +842,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1149,7 +1177,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1162,7 +1190,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1267,37 +1295,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ne.po b/ne.po
index 9ce95869fd..ec9b1d1787 100644
--- a/ne.po
+++ b/ne.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/nl.po b/nl.po
index d09000712e..e578e72cbb 100644
--- a/nl.po
+++ b/nl.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 19:47+0000\n"
-"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -765,7 +765,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -840,7 +840,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -856,6 +856,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1163,7 +1191,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1176,7 +1204,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1281,37 +1309,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/nl_BE.po b/nl_BE.po
index ef2eca17c2..cfcf28064e 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/nn.po b/nn.po
index d1525440a8..88a6c9885a 100644
--- a/nn.po
+++ b/nn.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/oc.po b/oc.po
index c7c2816645..44e4cf91c1 100644
--- a/oc.po
+++ b/oc.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/or.po b/or.po
index 19e1995597..cd9744d031 100644
--- a/or.po
+++ b/or.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/pa.po b/pa.po
index 19b4a0abcc..bdd1f10474 100644
--- a/pa.po
+++ b/pa.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/pl.po b/pl.po
index 8a8f956b41..e2caa64ab2 100644
--- a/pl.po
+++ b/pl.po
@@ -26,9 +26,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-06-16 13:26+0000\n"
-"Last-Translator: Waldemar Stoczkowski\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -755,7 +755,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -830,7 +830,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -846,6 +846,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1153,7 +1185,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1166,7 +1198,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1271,37 +1303,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/pt_BR.po b/pt_BR.po
index 5cc2b27820..8883cecb88 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-28 01:41+0000\n"
-"Last-Translator: C. E.\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -762,7 +762,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Erro"
@@ -837,7 +837,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -853,6 +853,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Bloquear a tela"
@@ -1160,7 +1188,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "A máscara de identidade MAC falhou para a placa de rede ${nic_name} (${nic}). A recuperação do erro também falhou, portanto, toda a navegação está desabilitada.\nTalvez seja melhor reiniciar o Tails e desabilitar a máscara de identidade MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1173,7 +1201,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Não há memória suficiente para procurar por atualizações.</b>\n\nVerifique se o sistema cumpre os requerimentos para executar Tails\nConsulte o documento:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTente reiniciar Tails para procurar por atualizações novamente\n\nOu faça a atualização manualmente\nConsulte https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "erro:"
@@ -1278,37 +1306,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/pt_PT.po b/pt_PT.po
index 4666fe429c..6a85456707 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-01 10:10+0000\n"
-"Last-Translator: Hugo Costa <hugoncosta(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -741,7 +741,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Erro"
@@ -816,7 +816,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -832,6 +832,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1139,7 +1167,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1152,7 +1180,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "erro:"
@@ -1257,37 +1285,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ro.po b/ro.po
index a91fce2daa..ca79b2626d 100644
--- a/ro.po
+++ b/ro.po
@@ -26,9 +26,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-18 18:13+0000\n"
-"Last-Translator: eduard pintilie <eduard.pintilie(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -755,7 +755,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Eroare"
@@ -830,7 +830,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -846,6 +846,36 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Ecran de blocare"
@@ -1153,7 +1183,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Falsificarea adresei MAC a eșuat pentru placa de rețea ${nic_name} (${nic}). Și recuperarea erorii a eșuat de asemenea astfel încât toate rețelele sunt dezactivate.\n\nAți putea alege să restartați Tails și să dezactivați falsificarea adresei MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1166,7 +1196,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Memorie insuficientă pentru verificarea actualizărilor.</b>\n\nAsigurați-vă că sistemul satisface cerințele minime pentru a rula Tails.\nAflați mai multe la file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPuteți încerca să reporniți Tails pentru a verifica din nou actualizările.\n\nPuteți de asemenea să actualizați sistemul manual.\nAflați cum la https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "eroare:"
@@ -1271,37 +1301,37 @@ msgstr "{partition_name} pe {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Frază de access sau parametri greșiti"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Eroare la deblocarea volumului"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Nu s-a putut debloca volumul {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ru.po b/ru.po
index 472fc12e6d..e7b486ca73 100644
--- a/ru.po
+++ b/ru.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-27 19:58+0000\n"
-"Last-Translator: solokot <solokot(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -766,7 +766,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -841,7 +841,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -857,6 +857,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1164,7 +1196,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1177,7 +1209,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1282,37 +1314,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/si_LK.po b/si_LK.po
index d636fb4e34..3edda13acc 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sk.po b/sk.po
index b74af9e197..2a5d2dd4d1 100644
--- a/sk.po
+++ b/sk.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -744,7 +744,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -819,7 +819,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -835,6 +835,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1142,7 +1174,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1155,7 +1187,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1260,37 +1292,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sl.po b/sl.po
index c76d12c6fa..5bc632eb7c 100644
--- a/sl.po
+++ b/sl.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-21 06:40+0000\n"
-"Last-Translator: Štefan Baebler <stefan.baebler(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1167,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1180,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1285,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/son.po b/son.po
index beeaacc4d7..9a9ff4cf31 100644
--- a/son.po
+++ b/son.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1160,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1173,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1278,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sq.po b/sq.po
index c763be72fd..2d3dd099e9 100644
--- a/sq.po
+++ b/sq.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Albanian (http://www.transifex.com/otf/torproject/language/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sr.po b/sr.po
index 3b3913e48c..c46475daa7 100644
--- a/sr.po
+++ b/sr.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-16 16:45+0000\n"
-"Last-Translator: Stevan Nestorovic <nestorovicstevan(a)tutanota.de>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -740,7 +740,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -815,7 +815,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -831,6 +831,36 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1138,7 +1168,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1151,7 +1181,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1256,37 +1286,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sv.po b/sv.po
index 92ff4b262e..33fc54e843 100644
--- a/sv.po
+++ b/sv.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-08 15:20+0000\n"
-"Last-Translator: Jonatan Nyberg <jonatan.nyberg.karl(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -753,7 +753,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Fel"
@@ -828,7 +828,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -844,6 +844,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Lås skärmen"
@@ -1151,7 +1179,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "Det gick inte att fejka MAC för nätverkskort ${nic_name} (${nic}). Dessutom misslyckades felåterhämtningen, så alla nätverk har inaktiverats.\nDu vill nog starta om Tails och inaktivera fejkning av MAC."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1164,7 +1192,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Inte tillräckligt tillgängligt minne för att söka efter uppgraderingar.</b>\n\nSäkerställ att det här systemet uppnår systemkraven för att köra Tails.\nSe fil:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTesta att starta om Tails för att söka efter uppgraderingar igen.\n\nEller gör en manuell uppgradering.\nSe https://tails.boum.org/doc/first_steps/upgrade#manual\""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "fel:"
@@ -1269,37 +1297,37 @@ msgstr "{partition_name} på {drive_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Fel lösenfras eller parametrar"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Ett fel uppstod vid upplåsning av volymen"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "Kunde inte låsa upp volymen {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/sw.po b/sw.po
index 75ee8572f6..8b0d9a91f3 100644
--- a/sw.po
+++ b/sw.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: Louis Lloyd <louislloyd12(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Swahili (http://www.transifex.com/otf/torproject/language/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ta.po b/ta.po
index 4b8e9236e0..715183dac0 100644
--- a/ta.po
+++ b/ta.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1164,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1177,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1282,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/tails.pot b/tails.pot
index b43ee10db6..1cd25650f9 100644
--- a/tails.pot
+++ b/tails.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/te.po b/te.po
index dc5e9f5d3b..16e8163126 100644
--- a/te.po
+++ b/te.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:12+0000\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/th.po b/th.po
index cfdd2233f6..e26be6367a 100644
--- a/th.po
+++ b/th.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: bact' <arthit(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -742,7 +742,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -817,7 +817,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -833,6 +833,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1140,7 +1166,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1153,7 +1179,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1258,37 +1284,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/tr.po b/tr.po
index b3ae4948fc..09449f8ebe 100644
--- a/tr.po
+++ b/tr.po
@@ -29,9 +29,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-04-05 19:09+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -758,7 +758,7 @@ msgstr "Tails kalıcı depolaması kur"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "Hata"
@@ -833,7 +833,7 @@ msgid ""
"You may now close this application."
msgstr "Yaptığınız değişiklikler Tails yeniden başlatıldıktan sonra geçerli olacak.\n\nŞimdi bu uygulamayı kapatabilirsiniz."
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr " su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın."
@@ -849,6 +849,34 @@ msgid ""
"option?"
msgstr "Tails uygulamasının çalıştığı bir sürücü bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "Ekranı kilitle"
@@ -1156,7 +1184,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız. Ayrıca bu hatanın kurtarılma girişimi de başarısız dolayısıyla tüm ağ devre dışı.\nTails uygulamasını yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1169,7 +1197,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "\"<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nSistemin Tails uygulamasını çalıştırmak için gereksinimleri karşıladığından emin olun.\nfile:///usr/share/doc/tails/website/doc/about/requirements.en.html dosyasına bakabilirsiniz\n\nGüncellemeleri yeniden denetlemek için Tails uygulamasını yeniden başlatmayı deneyin.\n\nYa da el ile güncellemeyi deneyin.\nAyrıntılı bilgi almak için https://tails.boum.org/doc/first_steps/upgrade#manual\" adresine bakabilirsiniz"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "hata:"
@@ -1274,37 +1302,37 @@ msgstr "{drive_name} üzerindeki {partition_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "Parola ya da parametreler hatalı"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "Birim kilidi açılırken sorun çıktı"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "{volume_name} biriminin kilidi açılamadı:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "Bir ya da birkaç uygulama bu birimi meşgul ediyor."
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "Birim kilitlenemedi {volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "Birim kilitlenemedi"
diff --git a/uk.po b/uk.po
index 9758b943e4..eb8c959486 100644
--- a/uk.po
+++ b/uk.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -747,7 +747,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -822,7 +822,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -838,6 +838,38 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1145,7 +1177,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1158,7 +1190,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1263,37 +1295,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/ur.po b/ur.po
index 45101a95e9..3b74536abf 100644
--- a/ur.po
+++ b/ur.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-06-04 11:52+0000\n"
-"Last-Translator: iram hassan <iramhassan136(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -737,7 +737,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -812,7 +812,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -828,6 +828,34 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+msgstr[1] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1135,7 +1163,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1148,7 +1176,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1253,37 +1281,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/uz.po b/uz.po
index c38e31c28d..2350f5bcb5 100644
--- a/uz.po
+++ b/uz.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -736,7 +736,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -811,7 +811,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -827,6 +827,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1134,7 +1160,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1147,7 +1173,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1252,37 +1278,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/vi.po b/vi.po
index 85ad2b0aab..b4f7e1d6ab 100644
--- a/vi.po
+++ b/vi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -738,7 +738,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -813,7 +813,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -829,6 +829,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1136,7 +1162,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1149,7 +1175,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1254,37 +1280,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/zh_CN.po b/zh_CN.po
index 2a24384764..e44f3a0da0 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -34,9 +34,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-05-03 06:40+0000\n"
-"Last-Translator: Scott Rhodes <starring169(a)gmail.com>\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -763,7 +763,7 @@ msgstr "设置 Tails 永久卷"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr "错误"
@@ -838,7 +838,7 @@ msgid ""
"You may now close this application."
msgstr "您所做的任何更改在 Tails 重启后才能生效。\n\n您现在可以关闭本程序了。"
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr "su 无法使用。请用 sudo 来替代。"
@@ -854,6 +854,32 @@ msgid ""
"option?"
msgstr "Tails 启动时的设备已无法找到。可能您使用了“toram”选项?"
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr "屏幕锁定"
@@ -1161,7 +1187,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr "MAC 伪装对 ${nic_name} (${nic}) 失败。错误恢复也一同失败,所以所有网络已被禁用。\n您可能会选择重启 Tails 并禁用 MAC 伪装。"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1174,7 +1200,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr "<b>内存不足,无法检测更新。</b>\n\n请确保系统满足 Tails 的最低运行要求。参阅文件:file:///usr/share/doc/tails/website/doc/about/requirements.en.…"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr "错误:"
@@ -1279,37 +1305,37 @@ msgstr "{drive_name} 上的 {partition_name}"
msgid "{volume_name} – {drive_name}"
msgstr "{drive_name} - {volume_name}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr "口令或参数错误"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr "解锁加密卷出错"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr "无法解锁加密卷{volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr "一个或更多应用致使卷正忙。"
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr "无法锁定卷{volume_name}:\n{error_message}"
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr "锁定卷失败"
diff --git a/zh_HK.po b/zh_HK.po
index 5d9129fd93..593c66255c 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -741,7 +741,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -816,7 +816,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -832,6 +832,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1139,7 +1165,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1152,7 +1178,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1257,37 +1283,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
diff --git a/zh_TW.po b/zh_TW.po
index d3645b494c..2c779b4de3 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -22,9 +22,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-21 09:59+0100\n"
-"PO-Revision-Date: 2020-03-25 13:13+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2020-06-04 13:11+0200\n"
+"PO-Revision-Date: 2020-06-18 12:35+0000\n"
+"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -751,7 +751,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:25
msgid "Error"
msgstr ""
@@ -826,7 +826,7 @@ msgid ""
"You may now close this application."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
msgid "su is disabled. Please use sudo instead."
msgstr ""
@@ -842,6 +842,32 @@ msgid ""
"option?"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr ""
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:50
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] ""
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] ""
+
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
msgstr ""
@@ -1149,7 +1175,7 @@ msgid ""
"You might prefer to restart Tails and disable MAC spoofing."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:38
+#: 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"
@@ -1162,7 +1188,7 @@ msgid ""
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:24
msgid "error:"
msgstr ""
@@ -1267,37 +1293,37 @@ msgstr ""
msgid "{volume_name} – {drive_name}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
msgid "Wrong passphrase or parameters"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:230
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
msgid "Error unlocking volume"
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
#, python-brace-format
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
msgid "One or more applications are keeping the volume busy."
msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:342
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
#, python-brace-format
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:344
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
msgid "Locking the volume failed"
msgstr ""
1
0